shrupl/src/lib.rs

15 lines
223 B
Rust
Raw Normal View History

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;
pub 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;