Skip to main content

dais_engine/
lib.rs

1//! Presentation engine — the state authority for Dais.
2//!
3//! The engine processes commands from the [`CommandBus`](dais_core::bus::CommandBus), maintains the authoritative [`PresentationState`](dais_core::state::PresentationState), and broadcasts state changes to UI subscribers.
4
5pub mod engine;
6pub mod monitor;