feat: placeholder for v1 subcommands (#135)
* feat: placeholder for v1 subcommands * chore: more usage comments
This commit is contained in:
14
cmd/influx/v1_commands.go
Normal file
14
cmd/influx/v1_commands.go
Normal 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
|
||||
},
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user