Chore(help-screen): Tidy help screen

This commit is contained in:
2022-09-10 02:07:32 +08:00
parent 532a4a9922
commit 76999ef4ad
2 changed files with 3 additions and 3 deletions

View File

@@ -5,9 +5,9 @@ The project's goal is build a generic messenger that notifies through multiple c
## Usage
```
usage: print [-h|--help] [--webhook] [--url "<value>"]
usage: messenger [-h|--help] [--webhook] [--url "<value>"]
Prints provided string to stdout
Generic messenger that notifies through multiple channels
Arguments:

View File

@@ -12,7 +12,7 @@ import (
func main() {
// Create new parser object
parser := argparse.NewParser("print", "Prints provided string to stdout")
parser := argparse.NewParser("messenger", "Generic messenger that notifies through multiple channels")
// Create webhook flag
webhookFlag := parser.Flag("", "webhook", &argparse.Options{Help: "Use this flag to enable webhook sending"})