emissary/internal/command/client/agent/root.go

23 lines
402 B
Go
Raw Normal View History

package agent
import (
"forge.cadoles.com/Cadoles/emissary/internal/command/client/agent/spec"
"github.com/urfave/cli/v2"
)
func Root() *cli.Command {
return &cli.Command{
Name: "agent",
Usage: "Agents related commands",
Subcommands: []*cli.Command{
QueryCommand(),
CountCommand(),
UpdateCommand(),
GetCommand(),
2023-03-13 10:44:58 +01:00
DeleteCommand(),
2024-02-26 18:20:40 +01:00
ClaimCommand(),
spec.Root(),
},
}
}