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
33
34
mod decode;

use std::fmt::Debug;

use clap::{Parser, Subcommand};

#[derive(Parser, Debug, Clone)]
#[group(skip)]
pub struct Cmd {
    #[clap(subcommand)]
    sub: SubCmd,
}

#[derive(Subcommand, Debug, Clone)]
enum SubCmd {
    /// Decode XDR
    Dec(decode::Cmd),
}

#[derive(thiserror::Error, Debug)]
pub enum Error {
    #[error("decode: {0}")]
    Decode(#[from] decode::Error),
}

impl Cmd {
    #[allow(clippy::too_many_lines)]
    pub fn run(&self) -> Result<(), Error> {
        match &self.sub {
            SubCmd::Dec(d) => d.run()?,
        };
        Ok(())
    }
}