-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(utils): add Helper module for displaying command help
- Loading branch information
1 parent
92a121c
commit 86034fe
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |