Skip to content

Commit

Permalink
feat(utils): add Helper module for displaying command help
Browse files Browse the repository at this point in the history
  • Loading branch information
scriptprivate authored Aug 15, 2024
1 parent 92a121c commit 86034fe
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions lib/SecurityGate/Utils/Helper.pm
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
package SecurityGate::Utils::Helper {
use strict;
use warnings;

sub new {
return "
\rSecurity Gate v0.0.3
\rCore Commands
\r==============
\r\tCommand Description
\r\t------- -----------
\r\t-t, --token GitHub token
\r\t-r, --repo GitHub repository
\r\t-c, --critical Critical severity limit
\r\t-h, --high High severity limit
\r\t-m, --medium Medium severity limit
\r\t-l, --low Low severity limit
\n\n";
}
}

1;

0 comments on commit 86034fe

Please sign in to comment.