feat: placeholder for v1 subcommands (#135)

* feat: placeholder for v1 subcommands

* chore: more usage comments
This commit is contained in:
William Baker
2021-06-21 16:03:39 -04:00
committed by GitHub
parent 23e73e9146
commit 800e4c2cfb
3 changed files with 34 additions and 0 deletions

14
cmd/influx/v1_commands.go Normal file
View File

@ -0,0 +1,14 @@
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(),
// etc
},
}
}