tempo_bench/opts.rs
1use crate::cmd::max_tps::MaxTpsArgs;
2use clap::{Parser, Subcommand};
3
4#[derive(Parser, Debug)]
5#[command(version, about, long_about = None)]
6pub struct TempoBench {
7 #[command(subcommand)]
8 pub cmd: TempoBenchSubcommand,
9}
10
11#[derive(Subcommand, Debug)]
12pub enum TempoBenchSubcommand {
13 RunMaxTps(MaxTpsArgs),
14}