
* feat: v1 dbrp commands * fix: fixed the cloud create command * chore: cleanup * fix: updated based on required attrs in swagger * feat: update to latest openapi rev * chore: made dbrps plural consistently * chore: formatting * fix: standardized Default field name and added comments * chore: changed file name for command to singular
14 lines
228 B
Go
14 lines
228 B
Go
package main
|
|
|
|
import "github.com/urfave/cli/v2"
|
|
|
|
func newV1SubCommand() *cli.Command {
|
|
return &cli.Command{
|
|
Name: "v1",
|
|
Usage: "InfluxDB v1 management commands",
|
|
Subcommands: []*cli.Command{
|
|
newV1DBRPCmd(),
|
|
},
|
|
}
|
|
}
|