runtimo_daemon/lib.rs
1//! Runtimo Daemon library.
2//!
3//! Provides [`run`] — the daemon's main event loop. Called by both the
4//! standalone `runtimo-daemon` binary and the `runtimo` CLI `--daemon` mode.
5//!
6//! Internal modules: `config` (paths), `auth` (peer auth), `dispatch` (RPC + jobs),
7//! `engine` (state + event loop), `rpc` (JSON-RPC types), `jobs` (background jobs).
8//! Not part of public API.
9
10mod auth;
11mod config;
12mod dispatch;
13mod engine;
14mod jobs;
15mod rpc;
16
17pub use engine::run;