From 0324902ea8b11391b4f90cc7b2c27088826f3016 Mon Sep 17 00:00:00 2001 From: Gustavo Stingelin Cardoso Filho Date: Mon, 30 Jun 2025 23:06:51 -0300 Subject: [PATCH] cmd/wtclient: add usage info for session and terminate commands --- cmd/commands/wtclient.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cmd/commands/wtclient.go b/cmd/commands/wtclient.go index 075861b98..2969d27ae 100644 --- a/cmd/commands/wtclient.go +++ b/cmd/commands/wtclient.go @@ -376,7 +376,8 @@ func policy(ctx *cli.Context) error { } var sessionCommands = cli.Command{ - Name: "session", + Name: "session", + Usage: "Interact with watchtower client sessions.", Subcommands: []cli.Command{ terminateSessionCommand, }, @@ -384,6 +385,7 @@ var sessionCommands = cli.Command{ var terminateSessionCommand = cli.Command{ Name: "terminate", + Usage: "Terminate a watchtower client session.", ArgsUsage: "id", Action: actionDecorator(terminateSession), }