2025-06-25 16:34:32 +00:00
|
|
|
// TODO fix with documentation
|
|
|
|
|
#![allow(clippy::missing_errors_doc)]
|
|
|
|
|
|
2025-06-25 16:34:22 +00:00
|
|
|
mod appstate;
|
|
|
|
|
mod cachefile;
|
|
|
|
|
mod cli;
|
2025-06-27 01:55:43 +00:00
|
|
|
mod error;
|
2025-06-25 16:34:22 +00:00
|
|
|
mod file;
|
|
|
|
|
mod impl_ureq;
|
|
|
|
|
pub mod output;
|
|
|
|
|
mod sharry;
|
|
|
|
|
|
|
|
|
|
pub use appstate::AppState;
|
|
|
|
|
pub use cli::Cli;
|
2025-06-27 01:55:43 +00:00
|
|
|
pub use error::{Error, Parameter, Result};
|