use clap::{App, AppSettings, Arg, ArgMatches, SubCommand};
pub fn add_subcommand_mount() -> App<'static, 'static> {
SubCommand::with_name("mount")
.settings(&[AppSettings::ArgRequiredElseHelp])
.about("mount layers of a container image to create RootFS.")
.arg(
Arg::with_name("name")
.required(true)
.help("Image name to mount")
.index(1),
)
}
pub async fn run_subcommand_mount(_subcmd: &ArgMatches<'_>) -> std::io::Result<()> {
Ok(())
}