Browse Source

Add help for a few commands

master
Gregory Rudolph 3 years ago
parent
commit
3d6d5c64b9
Signed by: rudi
GPG Key ID: EF64F3CBD1A1EBDD
  1. 2
      commands.go

2
commands.go

@ -50,6 +50,7 @@ func setupCommands() { @@ -50,6 +50,7 @@ func setupCommands() {
snap := Command{
Name: "Snap",
Help: "Trigger a purge!",
RequiresAdmin: false,
Keywords: []string{"snap", "purge", "sn"},
Exec: Snap,
@ -59,6 +60,7 @@ func setupCommands() { @@ -59,6 +60,7 @@ func setupCommands() {
status := Command{
Name: "Status",
RequiresAdmin: true,
Help: "Show the current status of Thanos/Verifications and probations",
Keywords: []string{"st", "status", "stats"},
Exec: Status,
}

Loading…
Cancel
Save