liboci_cli/features.rs
1use clap::Parser;
2
3/// Return the features list for a container
4/// This subcommand was introduced in runc by
5/// https://github.com/opencontainers/runc/pull/3296
6/// It is documented here:
7/// https://github.com/opencontainers/runtime-spec/blob/main/features-linux.md
8#[derive(Parser, Debug)]
9pub struct Features {}