You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/cmd/client_agent_cmd_darwin.go

41 lines
1.1 KiB

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package cmd
import (
"github.com/hashicorp/boundary/internal/cmd/base"
"github.com/hashicorp/boundary/internal/cmd/commands/clientagentcmd"
"github.com/mitchellh/cli"
)
func init() {
extraCommandsFuncs = append(extraCommandsFuncs, func(ui, serverCmdUi cli.Ui, runOpts *RunOptions) {
Commands["client-agent"] = func() (cli.Command, error) {
return &clientagentcmd.ClientAgentCommand{
Command: base.NewCommand(ui),
}, nil
}
Commands["client-agent status"] = func() (cli.Command, error) {
return &clientagentcmd.StatusCommand{
Command: base.NewCommand(ui),
}, nil
}
Commands["client-agent pause"] = func() (cli.Command, error) {
return &clientagentcmd.PauseCommand{
Command: base.NewCommand(ui),
}, nil
}
Commands["client-agent resume"] = func() (cli.Command, error) {
return &clientagentcmd.ResumeCommand{
Command: base.NewCommand(ui),
}, nil
}
Commands["client-agent sessions"] = func() (cli.Command, error) {
return &clientagentcmd.SessionsCommand{
Command: base.NewCommand(ui),
}, nil
}
})
}