15 lines
245 B
Go
15 lines
245 B
Go
package main
|
|
|
|
import "github.com/urfave/cli"
|
|
|
|
func newV1SubCommand() cli.Command {
|
|
return cli.Command{
|
|
Name: "v1",
|
|
Usage: "InfluxDB v1 management commands",
|
|
Subcommands: []cli.Command{
|
|
newV1DBRPCmd(),
|
|
newV1AuthCommand(),
|
|
},
|
|
}
|
|
}
|