url_cleaner_engine/lib.rs
1//! The engine of URL Cleaner.
2//!
3//! Can be integrated into other projects for things like [CLIs](https://github.com/Scripter17/url-cleaner/tree/main/url-cleaner) and [HTTP servers](https://github.com/Scripter17/url-cleaner/tree/main/url-cleaner-site).
4//!
5//! For a tutorial, see the [tutorial] module.
6
7pub mod glue;
8pub mod types;
9pub mod testing;
10pub mod helpers;
11pub mod tutorial;
12pub(crate) mod util;
13
14pub use types::{Cleaner, Job, LazyTaskConfig};