Skip to main content

max / makenotwork

627 B · 25 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 //! Design: `bento-overview` in the shared code wiki (`~/Code/_private/wiki/`).
9 //! <!-- wiki: bento-overview -->
10
11 pub mod config;
12 pub mod db;
13 pub mod domain;
14 pub mod engine;
15 pub mod error;
16 pub mod events;
17 pub mod metrics;
18 pub mod ota;
19 pub mod retention;
20 pub mod routes;
21 pub mod runner;
22 pub mod state;
23 pub mod status;
24 pub mod topology;
25