bphelper-cli 0.7.3

CLI for creating and managing battery packs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! CLI for battery-pack: create and manage battery packs.

mod commands;
pub(crate) mod manifest;
pub(crate) mod registry;
pub(crate) mod template_engine;
mod tui;
mod validate;

// The only true public API
pub use commands::main;
pub use registry::resolve_bp_managed_content;
pub use validate::validate_templates;