1
2
3
4
5
6
7
8
9
10
11
12
mod unpack;

pub use unpack::PackageUnpack;

/// Container related commands. (inspecting, unpacking, ...)
#[derive(clap::Subcommand, Debug)]
// Allowing missing_docs because the comment would override the doc comment on
// the command struct.
#[allow(missing_docs)]
pub enum Container {
    Unpack(PackageUnpack),
}