2026-04-24 13:40:47 +00:00
|
|
|
//! Service layer — domain logic extracted from HTTP handlers.
|
|
|
|
|
//!
|
|
|
|
|
//! Each sub-module follows the conventions documented in
|
|
|
|
|
//! `docs/architecture/service-modules.md`:
|
|
|
|
|
//! - `mod.rs` orchestrates and owns the typed `Error` type
|
|
|
|
|
//! - `io.rs` is the only file that performs side effects
|
|
|
|
|
//! - Topic-named pure files contain branching logic with no I/O
|
|
|
|
|
pub mod agents;
|
2026-04-24 14:03:20 +00:00
|
|
|
pub mod events;
|
|
|
|
|
pub mod health;
|
2026-04-24 14:32:36 +00:00
|
|
|
pub mod ws;
|