bphelper_cli/lib.rs
1//! CLI for battery-pack: create and manage battery packs.
2
3mod commands;
4pub(crate) mod manifest;
5pub(crate) mod registry;
6pub(crate) mod template_engine;
7mod tui;
8mod validate;
9
10// The only true public API
11pub use commands::main;
12pub use registry::resolve_bp_managed_content;
13pub use validate::validate_templates;