use super::*; #[derive(Debug, Parser)] pub(crate) struct Parse { #[arg(help = "Parse <OBJECT>.")] 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, })) } }
Inscription number 44,975,549
Genesis block 819,046
File type text
File size 346 b
Creation date Nov 30,2023 10:52 am