We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9110e7b commit 6fe4c20Copy full SHA for 6fe4c20
2 files changed
src/commands/project/add_user.rs
@@ -0,0 +1 @@
1
+pub use super::add_users::{command, Args};
src/commands/project/mod.rs
@@ -4,6 +4,7 @@ pub(super) use clap::Parser;
4
#[allow(unused_imports)]
5
pub(super) use colored::Colorize;
6
7
+pub mod add_user;
8
pub mod add_users;
9
pub mod delete;
10
pub mod id;
@@ -27,6 +28,7 @@ pub struct Args {
27
28
}
29
30
commands_enum!(
31
+ add_user,
32
add_users,
33
delete,
34
id,
0 commit comments