All checks were successful
continuous-integration/drone/push Build is passing
Previously, the functions in article_location.rs where returning generic anyhow::Result. In order to ease error handling when using the library, it have been moved to specific errors.
17 lines
241 B
Rust
17 lines
241 B
Rust
pub use url::Url;
|
|
|
|
pub mod errors;
|
|
|
|
mod tools;
|
|
pub use tools::{Download, Downloader};
|
|
|
|
pub mod newspaper;
|
|
|
|
// TODO: move to another crate
|
|
pub mod newspapers;
|
|
|
|
pub mod article_location;
|
|
pub use article_location::ArticleLocation;
|
|
|
|
mod consts;
|