mod helpers;
mod mpool;
mod wallet;
#[derive(Debug, clap::Subcommand)]
pub enum CalibnetTestsCommand {
Wallet(wallet::CalibnetWalletTestCommand),
Mpool(mpool::CalibnetMpoolTestCommand),
}
impl CalibnetTestsCommand {
pub async fn run(self) -> anyhow::Result<()> {
match self {
Self::Wallet(cmd) => cmd.run().await,
Self::Mpool(cmd) => cmd.run().await,
}
}
}