1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
use std::fmt::Debug;
use clap::{Parser, Subcommand};
pub mod wrap;
#[derive(Parser, Debug)]
pub struct Root {
#[clap(subcommand)]
cmd: Cmd,
}
#[derive(Subcommand, Debug)]
enum Cmd {
Wrap(wrap::Cmd),
}
#[derive(thiserror::Error, Debug)]
pub enum Error {
#[error(transparent)]
Wrap(#[from] wrap::Error),
}
impl Root {
pub async fn run(&self) -> Result<(), Error> {
match &self.cmd {
Cmd::Wrap(wrap) => wrap.run().await?,
}
Ok(())
}
}