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/ferry_cmd_windows.go

43 lines
1.0 KiB

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