use super::*; #[derive(Debug, Parser)] pub(crate) struct Parse { #[arg(help = "Parse .")] object: Object, } #[derive(Debug, PartialEq, Serialize, Deserialize)] pub struct Output { pub object: Object, } impl Parse { pub(crate) fn run(self) -> SubcommandResult { Ok(Box::new(Output { object: self.object, })) } }