gou_git/
refactor.rs

1
2
3#[derive(Debug, Clone, clap::Parser)]
4pub struct Refactor {
5}
6
7impl Refactor {
8    pub fn run(self) {
9        println!("Refactor");
10    }
11}