1
2
3
4
5
6
7
8
9
use clap::Parser;

/// Return the features list for a container
/// This subcommand was introduced in runc by
/// https://github.com/opencontainers/runc/pull/3296
/// It is documented here:
/// https://github.com/opencontainers/runtime-spec/blob/main/features-linux.md
#[derive(Parser, Debug)]
pub struct Features {}