Skip to main content

mlua_swarm/blueprint/
loader.rs

1//! Compat shim — the Blueprint loader (`expand_file_refs` /
2//! `load_blueprint_from_path` / `pre_read_default_agent_kind` /
3//! `LoadError`) moved to the sibling `mlua-swarm-compile` crate's
4//! `linker` module so that the CLI (`mse bp lint` / `mse bp build`)
5//! and the server register path share one linker binary instead of
6//! two hand-copied bodies. This module re-exports the moved surface
7//! for pre-migration call sites; new code should reach into
8//! `mlua_swarm_compile::linker` directly (issue 4c4e3eb8 Phase 2).
9
10pub use mlua_swarm_compile::linker::{
11    expand_file_refs, load_blueprint_from_path, pre_read_default_agent_kind, LoadError,
12};