wasmer_cli/commands/container/
mod.rs

1mod unpack;
2
3pub use unpack::PackageUnpack;
4
5/// Container related commands. (inspecting, unpacking, ...)
6#[derive(clap::Subcommand, Debug)]
7// Allowing missing_docs because the comment would override the doc comment on
8// the command struct.
9#[allow(missing_docs)]
10pub enum Container {
11    Unpack(PackageUnpack),
12}