url-cleaner-engine 0.11.0

The engine behind URL Cleaner.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! The engine of URL Cleaner.
//!
//! 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).
//!
//! For a tutorial, see the [tutorial] module.

pub mod glue;
pub mod types;
pub mod testing;
pub mod helpers;
pub mod tutorial;
pub(crate) mod util;

pub use types::{Cleaner, Job, LazyTaskConfig};