mod top;
use clap::Subcommand;
use super::Executable;
#[derive(Debug, Subcommand)]
pub enum Inspect {
Top(top::Top),
}
impl Executable for Inspect {
async fn execute(self) -> eyre::Result<()> {
match self {
Inspect::Top(args) => args.execute().await,
}
}
}