runtimo-daemon 0.7.1

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

mod auth;
mod config;
mod dispatch;
mod engine;
mod jobs;
mod rpc;

pub use engine::run;