fix: downgrade urfave/cli to v1 to enable more flexible parsing (#154)

This commit is contained in:
Daniel Moran
2021-06-28 14:49:26 -04:00
committed by GitHub
parent 72d1ad8361
commit ead44e4e83
29 changed files with 534 additions and 639 deletions

View File

@ -1,12 +1,12 @@
package main
import "github.com/urfave/cli/v2"
import "github.com/urfave/cli"
func newV1SubCommand() *cli.Command {
return &cli.Command{
func newV1SubCommand() cli.Command {
return cli.Command{
Name: "v1",
Usage: "InfluxDB v1 management commands",
Subcommands: []*cli.Command{
Subcommands: []cli.Command{
newV1DBRPCmd(),
newV1AuthCommand(),
},