🚸 Ease of use

Added an example.
This commit is contained in:
perp 2023-08-02 05:02:57 +01:00
parent d33765751c
commit 5242188ffa

View File

@ -9,9 +9,10 @@ import (
// Create command
var createCmd = &cobra.Command{
Use: "create",
Short: "Create an alert",
Args: cobra.MinimumNArgs(2),
Use: "create",
Short: "Create an alert",
Example: "create <name> <ip>",
Args: cobra.MinimumNArgs(2),
Run: func(_ *cobra.Command, args []string) {
utils.CheckColor()
alert.Create(args[0], args[1])