hyperhive/hive-c0re/src/stores/mod.rs

11 lines
379 B
Rust

//! Sqlite-backed host-side stores (broker, approval / schedule queues,
//! build logs, power intent) plus the shared connection open/migration
//! helper (`db`). Each submodule is re-exported at the crate root, so
//! `crate::broker::…` etc. keep working unchanged.
pub mod approvals;
pub mod broker;
pub mod build_logs;
pub mod db;
pub mod power;
pub mod scheduled_prompts;