moadim 0.19.1

Loop engine for AI agents — routines over REST, MCP, and a built-in web UI
1
2
3
4
5
6
7
8
9
//! Build-time code generation: embedded UI HTML.

/// Yew UI build + inlining into a self-contained `index.html`.
mod ui;

/// Run all build-time code generation steps for `manifest_dir`.
pub fn run(manifest_dir: &str) {
    ui::build(manifest_dir);
}