Skip to content

Commit 31814a1

Browse files
authored
Merge pull request #10014 from GustavoStingelin/issue-9583-missing-wt-cli-usage
cmd/wtclient: add usage info for session and terminate commands
2 parents 8147bb6 + 0324902 commit 31814a1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

cmd/commands/wtclient.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,14 +376,16 @@ func policy(ctx *cli.Context) error {
376376
}
377377

378378
var sessionCommands = cli.Command{
379-
Name: "session",
379+
Name: "session",
380+
Usage: "Interact with watchtower client sessions.",
380381
Subcommands: []cli.Command{
381382
terminateSessionCommand,
382383
},
383384
}
384385

385386
var terminateSessionCommand = cli.Command{
386387
Name: "terminate",
388+
Usage: "Terminate a watchtower client session.",
387389
ArgsUsage: "id",
388390
Action: actionDecorator(terminateSession),
389391
}

0 commit comments

Comments
 (0)