1
2
3
4
5
6
7
pub mod generate;

#[derive(Debug)]
pub struct CmdExit {
    pub code: i32,
    pub message: Option<String>,
}