git_explore/cmd/
init.rs

1use crate::*;
2#[derive(Parser, Debug, Clone)]
3pub struct InitOption {
4    #[clap(flatten)]
5    pub base: BaseOptions,
6    #[clap(flatten)]
7    pub version_opts: VersonOpts,
8}