Skip to content

Commit

Permalink
chore: remove debug command
Browse files Browse the repository at this point in the history
fix: remove debug command
  • Loading branch information
alexng353 committed Sep 22, 2024
1 parent b68d2f5 commit 03a2236
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 22 deletions.
3 changes: 3 additions & 0 deletions .githooks/pre-push
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash

cargo build --release
19 changes: 0 additions & 19 deletions src/commands/debug.rs

This file was deleted.

1 change: 0 additions & 1 deletion src/commands/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ pub mod project;

// No subcommands
pub mod auth;
pub mod debug;
pub mod decrypt;
pub mod encrypt;
pub mod export;
Expand Down
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ pub struct Args {
// Generates the commands based on the modules in the commands directory
// Specify the modules you want to include in the commands_enum! macro
commands_enum!(
auth, debug, decrypt, encrypt, export, gen, import, link, list_keys, run,
set, shell, sign, unlink, unset, upload, variables, version,
auth, decrypt, encrypt, export, gen, import, link, list_keys, run, set,
shell, sign, unlink, unset, upload, variables, version,
// commands with subcommands
config, delete, get, keyring, new, project
);
Expand Down

0 comments on commit 03a2236

Please sign in to comment.