use super::*; mod export; pub mod info; mod update; #[derive(Debug, Parser)] pub(crate) enum IndexSubcommand { #[command(about = "Write inscription numbers and ids to a tab-separated file")] Export(export::Export), #[command(about = "Print index statistics")] Info(info::Info), #[command(about = "Update the index", alias = "run")] Update, } impl IndexSubcommand { pub(crate) fn run(self, options: Options) -> SubcommandResult { match self { Self::Export(export) => export.run(options), Self::Info(info) => info.run(options), Self::Update => update::run(options), } } }
Inscription number 44,982,964
Genesis block 819,059
File type text
File size 615 b
Creation date Nov 30,2023 1:34 am