bambu_rs/core/mod.rs
1//! `core` — pure, I/O-free protocol logic. This is the main test surface:
2//! every item here is unit-testable without a network or a real printer.
3//!
4//! Submodules are added one TDD slice at a time.
5
6pub mod capability;
7pub mod command;
8#[cfg(test)]
9pub(crate) mod fake;
10pub mod firmware;
11pub mod hms;
12pub mod model;
13pub mod park;
14pub mod project;
15pub mod report;
16pub mod safety;
17pub mod session;
18pub mod stage;
19pub mod start;
20pub mod status;
21pub mod timelapse;
22pub mod verify;
23pub mod version;