11 lines
143 B
Go
11 lines
143 B
Go
package cli
|
|
|
|
import (
|
|
"gopkg.in/urfave/cli.v2"
|
|
)
|
|
|
|
// Commands is the root group of CLI commands
|
|
var Commands = []*cli.Command{
|
|
versionCmd,
|
|
}
|