From 3d6d5c64b9a78150a9475fac420ec27c88e07438 Mon Sep 17 00:00:00 2001 From: Gregory Rudolph Date: Thu, 6 May 2021 07:42:30 -0400 Subject: [PATCH] Add help for a few commands --- commands.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/commands.go b/commands.go index 2597a5c..d67fdb1 100644 --- a/commands.go +++ b/commands.go @@ -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() { status := Command{ Name: "Status", RequiresAdmin: true, + Help: "Show the current status of Thanos/Verifications and probations", Keywords: []string{"st", "status", "stats"}, Exec: Status, }