Skip to main content

max / makenotwork

682 B · 28 lines History Blame Raw
1 //! sando-daemon as a library.
2 //!
3 //! Exposes every module so the `sandod` binary (in `src/main.rs`) and
4 //! the `sando` TUI (in `../tui`) can share wire-facing types — events,
5 //! outcomes, domain newtypes — by import rather than duplication.
6 //!
7 //! External consumers should only need `domain`, `outcome`, and `events`;
8 //! the rest are exposed because the bin re-uses them via this crate.
9
10 pub mod backup;
11 pub mod build;
12 pub mod classify;
13 pub mod config;
14 pub mod db;
15 pub mod deploy;
16 pub mod domain;
17 pub mod error;
18 pub mod events;
19 pub mod gates;
20 pub mod git;
21 pub mod live_log;
22 pub mod metrics;
23 pub mod outcome;
24 pub mod routes;
25 pub mod state;
26 pub mod sync;
27 pub mod topology;
28