14 lines
213 B
Go
14 lines
213 B
Go
|
package config
|
||
|
|
||
|
import "github.com/urfave/cli/v2"
|
||
|
|
||
|
var Command = &cli.Command{
|
||
|
Name: "config",
|
||
|
Usage: "config some settings",
|
||
|
Subcommands: []*cli.Command{
|
||
|
UserCommand,
|
||
|
DatabaseCommand,
|
||
|
DNSCommand,
|
||
|
},
|
||
|
}
|