aboutsummaryrefslogtreecommitdiffstats
path: root/src/command/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/command/mod.rs')
-rw-r--r--src/command/mod.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/command/mod.rs b/src/command/mod.rs
index 393936b0..df6b66e9 100644
--- a/src/command/mod.rs
+++ b/src/command/mod.rs
@@ -10,6 +10,8 @@ mod server;
mod init;
+mod contributors;
+
#[derive(Subcommand)]
#[clap(infer_subcommands = true)]
pub enum AtuinCmd {
@@ -29,6 +31,8 @@ pub enum AtuinCmd {
/// Generate a UUID
Uuid,
+ Contributors,
+
/// Generate shell completions
GenCompletions {
/// Set the shell for generating completions
@@ -48,6 +52,10 @@ impl AtuinCmd {
Self::Client(client) => client.run(),
#[cfg(feature = "server")]
Self::Server(server) => server.run(),
+ Self::Contributors => {
+ contributors::run();
+ Ok(())
+ }
Self::Init(init) => {
init.run();
Ok(())