torq-core 0.1.2

TorQ daemon core: engine wrapper, queue, persistence, REST API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! TorQ daemon core.
//!
//! Owns the librqbit engine session, download queue, persistence, and (in the
//! next phase) the REST + SSE API. The TUI and CLI are stateless clients.

pub mod api;
pub mod config;
pub mod daemon;
pub mod engine;
pub mod library;
pub mod rss;
pub mod watch;

pub const APP_NAME: &str = "torq";
pub const VERSION: &str = env!("CARGO_PKG_VERSION");