kairo_core/
lib.rs

1mod error;
2pub mod exec;
3mod handler;
4
5pub type Result<T> = std::result::Result<T, error::Error>;
6
7pub use error::Error;
8pub use handler::UrlHandlerApp;
9pub use url::Url;