-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e75af47
commit 92b72c9
Showing
2 changed files
with
25 additions
and
15 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
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,24 @@ | ||
package utility | ||
|
||
import ( | ||
"fmt" | ||
) | ||
|
||
// Print Help Command Output | ||
func PrintHelp() { | ||
fmt.Println("Hyaena Technologies: Data Interchange Server") | ||
fmt.Println("") | ||
fmt.Println("") | ||
fmt.Println("Commands: Description:") | ||
fmt.Println("") | ||
fmt.Println("exit Exit Server") | ||
fmt.Println("help Print List of Commands and Flags") | ||
fmt.Println("serve Serve Web Applcation") | ||
fmt.Println("version Print Version Number") | ||
fmt.Println("") | ||
fmt.Println("") | ||
fmt.Println("Flags: Description:") | ||
fmt.Println("") | ||
fmt.Println("--help, --h, -h Print List of Commands and Flags") | ||
fmt.Println("--version, --v, -v Print Version Number") | ||
} |