gou_git/commands.rs
1use clap::Subcommand;
2
3use crate::{fix::Fix, refactor::Refactor, feat::Feat};
4
5#[derive(Subcommand, Debug, Clone)]
6pub enum Commands {
7 Fix(Fix),
8 Refactor(Refactor),
9 Feat(Feat),
10 //Chore,
11 //Test,
12 //Docs,
13 //Style,
14 //Ci,
15 //Build,
16 //Revert,
17 //Perf,
18 //Config,
19 //Init,
20 //Release,
21 //Bump,
22 // blablabla
23}