oxi/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 export;
8pub mod ext;
9pub mod issue;
10pub mod misc;
11pub mod pkg;
12pub mod reset;
13pub mod sessions;
14pub mod setup;
15
16pub use config::*;
17pub use export::*;
18pub use ext::*;
19pub use issue::*;
20pub use misc::*;
21pub use pkg::*;
22pub use reset::*;
23pub use sessions::*;
24pub use setup::*;