Skip to main content

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