Skip to main content

torq_core/
lib.rs

1//! TorQ daemon core.
2//!
3//! Owns the librqbit engine session, download queue, persistence, and (in the
4//! next phase) the REST + SSE API. The TUI and CLI are stateless clients.
5
6pub mod api;
7pub mod config;
8pub mod daemon;
9pub mod engine;
10pub mod library;
11pub mod rss;
12pub mod watch;
13
14pub const APP_NAME: &str = "torq";
15pub const VERSION: &str = env!("CARGO_PKG_VERSION");