diff options
Diffstat (limited to 'crates/mozart/src/commands/check_platform_reqs.rs')
| -rw-r--r-- | crates/mozart/src/commands/check_platform_reqs.rs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/crates/mozart/src/commands/check_platform_reqs.rs b/crates/mozart/src/commands/check_platform_reqs.rs new file mode 100644 index 0000000..697b3f6 --- /dev/null +++ b/crates/mozart/src/commands/check_platform_reqs.rs @@ -0,0 +1,20 @@ +use clap::Args; + +#[derive(Args)] +pub struct CheckPlatformReqsArgs { + /// Disables checking of require-dev packages requirements + #[arg(long)] + pub no_dev: bool, + + /// Check packages from the lock file + #[arg(long)] + pub lock: bool, + + /// Output format (text, json) + #[arg(short, long)] + pub format: Option<String>, +} + +pub fn execute(_args: &CheckPlatformReqsArgs) { + todo!() +} |
