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),
4//! maintains the authoritative [`PresentationState`](dais_core::state::PresentationState),
5//! and broadcasts state changes to UI subscribers.
6
7pub mod aids;
8pub mod engine;
9pub mod monitor;
10pub mod navigation;
11pub mod timer;