Skip to main content

max / makenotwork

474 B · 20 lines History Blame Raw
1 //! bento-daemon as a library.
2 //!
3 //! Exposes every module so the `bentod` binary (`src/main.rs`) and the `bento`
4 //! TUI (`../tui`) share wire-facing types — events, domain newtypes — by import
5 //! rather than duplication. External consumers mainly need `domain` and
6 //! `events`.
7
8 pub mod config;
9 pub mod db;
10 pub mod domain;
11 pub mod engine;
12 pub mod error;
13 pub mod events;
14 pub mod metrics;
15 pub mod ota;
16 pub mod routes;
17 pub mod runner;
18 pub mod state;
19 pub mod topology;
20