Files
rustybeds/src/lib.rs

24 lines
665 B
Rust

//! # lib.rs — BEDS Public API
//!
//! Exposes BEDS modules for use by the integration test harness. All
//! application logic lives in the individual modules; this file re-exports
//! what tests need to reach.
//!
//! ## Calling Agents
//! - `tests/common/mod.rs` and all files under `tests/` — via `rustybeds::`
//!
//! **Author:** mks
//! **Version:** 1.0
//!
//! ## History
//! * `2026-04-02` - mks - original coding
//! * `2026-04-04` - mks - promoted service modules to pub mod services
//! * `2026-04-05` - mks - added brokers and core modules
pub mod brokers;
pub mod config;
pub mod core;
pub mod logging;
pub mod services;
pub mod template_registry;