oxicode/cli/commands/mod.rs
1//! CLI subcommand handlers.
2//!
3//! Each submodule owns the handler(s) for a family of `Commands` variants.
4//! `main.rs` dispatches the match arm to the appropriate function here.
5
6pub mod config;
7pub mod doctor;
8pub mod export;
9pub mod ext;
10pub mod issue;
11pub mod migrate;
12pub mod misc;
13pub mod pkg;
14pub mod reset;
15pub mod sessions;
16pub mod setup;
17pub use config::*;
18pub use doctor::*;
19pub use export::*;
20pub use ext::*;
21pub use issue::*;
22pub use migrate::*;
23pub use misc::*;
24pub use pkg::*;
25pub use reset::*;
26pub use sessions::*;
27pub use setup::*;