mod calibnet;
#[derive(Debug, clap::Subcommand)]
pub enum TestsCommand {
#[command(subcommand)]
Calibnet(calibnet::CalibnetTestsCommand),
}
impl TestsCommand {
pub async fn run(self) -> anyhow::Result<()> {
match self {
Self::Calibnet(cmd) => cmd.run().await,
}
}
}