1
0
mirror of https://github.com/smallstep/cli.git synced 2025-08-06 05:02:39 +03:00
Files
step-ca-cli/command/beta/beta.go
2024-09-30 13:25:46 +02:00

26 lines
584 B
Go

package beta
import (
"github.com/urfave/cli"
"github.com/smallstep/cli-utils/command"
"github.com/smallstep/cli/command/ca"
)
// init creates and registers the ca command
func init() {
cmd := cli.Command{
Name: "beta",
Usage: "commands that are being tested; these APIs are likely to change",
UsageText: "step beta <subcommand> [arguments] [global-flags] [subcommand-flags]",
Description: `**step beta** command group provides access to new APIs that are in development.
`,
Subcommands: cli.Commands{
ca.BetaCommand(),
},
}
command.Register(cmd)
}