moadim 0.4.0

Moadim.io MCP/REST server for managing cron jobs
1
2
3
4
5
6
7
8
9
10
11
//! Build-time code generation: JSON Schema artifacts and embedded UI HTML.

mod job_schema;
/// 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) {
    job_schema::generate(manifest_dir);
    ui::build(manifest_dir);
}