bambu-rs 0.1.0

AI-agent-friendly Bambu Lab 3D printer CLI & library
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! `bambu` — the command-line consumer of the `bambu_rs` library.
//!
//! Thin noun-verb wrapper: argument parsing, JSON/human output formatting,
//! exit codes, confirmation flags and the local exclusive lock live here; all
//! protocol behaviour lives in the reusable [`bambu_rs`] library.
//!
//! All behaviour lives in [`bambu_rs::cli`]; this just returns its exit code.

fn main() -> std::process::ExitCode {
    bambu_rs::cli::run()
}