nzb-core 0.2.2

Shared models, config, NZB parser, and SQLite database for NZB clients
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod config;
pub mod db;
pub mod error;
#[cfg(feature = "groups-db")]
pub mod groups_db;
pub mod models;
pub mod nzb_parser;
pub mod sabnzbd_import;

pub use config::AppConfig;
pub use db::Database;
pub use error::{NzbError, Result};
pub use models::*;
pub use nzb_nntp;