oxigaf_cli/lib.rs
1//! OxiGAF CLI library interface.
2//!
3//! This module exposes internal functionality for integration testing.
4
5pub mod assets;
6pub mod cache;
7pub mod config;
8pub mod interactive;
9pub mod json_output;
10pub mod log_rotation;
11pub mod metrics;
12pub mod progress;
13pub mod stages;
14pub mod verbosity;
15
16// Re-export for tests
17pub use interactive::InteractiveController;