mirror of
https://github.com/containers/youki
synced 2025-11-12 03:42:00 +01:00
9 lines
235 B
Rust
9 lines
235 B
Rust
use clap::Parser;
|
|
|
|
/// Suspend the processes within the container
|
|
#[derive(Parser, Debug)]
|
|
pub struct Pause {
|
|
#[clap(value_parser = clap::builder::NonEmptyStringValueParser::new(), required = true)]
|
|
pub container_id: String,
|
|
}
|