Skip to main content

max / makenotwork

699 B · 29 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 archive;
12 pub mod artifact_record;
13 pub mod config;
14 pub mod db;
15 pub mod domain;
16 pub mod engine;
17 pub mod error;
18 pub mod events;
19 pub mod handoff;
20 pub mod metrics;
21 pub mod ota;
22 pub mod retention;
23 pub mod routes;
24 pub mod runner;
25 pub mod state;
26 pub mod status;
27 pub mod tls;
28 pub mod topology;
29