mlua_swarm_cli/lib.rs
1//! `mlua-swarm-cli` library surface.
2//!
3//! The `mse` binary (`src/main.rs`) owns the CLI entry points (`serve` /
4//! `mcp`) as binary-only modules. This library crate exists so that
5//! `tests/*.rs` integration tests can exercise crate-internal modules that
6//! have no CLI surface of their own yet — currently just [`dsl`], the
7//! flow.ir / Blueprint authoring DSL (see its module doc for the Lua API).
8
9pub mod dsl;