nzb-web 0.4.13

Usenet download engine: queue management, download orchestration, and background services
pub use nzb_decode;
pub use nzb_dispatch;
pub use nzb_postproc;
pub use nzb_postproc::nzb_core;

pub mod auth;
pub mod dir_watcher;
pub mod direct_unpack;
pub mod error;
pub mod log_buffer;
pub mod queue_manager;
pub mod rss_monitor;
pub mod sabnzbd_compat;
pub mod startup;
pub mod state;
pub mod util;

// Back-compat re-exports — dispatcher types live in `nzb-dispatch` now.
pub use nzb_dispatch::ServerProbePolicy;
pub use nzb_dispatch::article_failure::{self, ArticleFailure, ArticleFailureKind};
pub use nzb_dispatch::bandwidth;
pub use nzb_dispatch::dispatch_engine;
pub use nzb_dispatch::download_engine;

pub use log_buffer::{LogBuffer, LogBufferLayer};
pub use queue_manager::{QueueManager, ServerStatsData};
pub use startup::{StartupConfig, StartupResult};
pub use state::AppState;