reCoreD-UI/cmd/config/config.go
2024-04-10 13:24:01 +08:00

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,
},
}