From f7869a09906747d0797dcd8c49c069fa8f02930c Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Tue, 9 Dec 2025 13:30:25 +0100 Subject: chore(treewide): Remove last references to old paths --- crates/rocie-cli/src/cli.rs | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'crates/rocie-cli/src/cli.rs') diff --git a/crates/rocie-cli/src/cli.rs b/crates/rocie-cli/src/cli.rs index 626a7b1..376eda5 100644 --- a/crates/rocie-cli/src/cli.rs +++ b/crates/rocie-cli/src/cli.rs @@ -15,6 +15,12 @@ pub(crate) enum Command { command: ProductCommand, }, + /// Deal with users + User { + #[command(subcommand)] + command: UserCommand, + }, + /// Deal with parents Parents { #[command(subcommand)] @@ -40,6 +46,12 @@ pub(crate) enum Command { }, } +#[derive(Subcommand)] +pub(crate) enum UserCommand { + /// List all registered users + List {}, +} + #[derive(Subcommand)] pub(crate) enum ProductParentCommand { /// Register a new product parent -- cgit 1.4.1