Skip to main content

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
6mod engine;
7
8pub use engine::run;