Files
boxmaker/crates/brokerd/src/lib.rs
T
kyle 3ecaef3c8b Add brokerd serve: startup, both sockets, and the expiry thread
Implemented-By: OpenCode session (model recorded in docs/implementer-log.md)
2026-09-20 17:24:57 -07:00

15 lines
242 B
Rust

//! The broker: the only role that holds authority.
pub mod admin;
pub mod approvals;
pub mod args;
pub mod audit;
pub mod broker;
pub mod config;
pub mod grants;
pub mod ledger;
pub mod policy;
pub mod runner;
pub mod serve;
pub mod state;