reCoreD-UI/cmd/config/config.go

18 lines
260 B
Go
Raw Normal View History

2024-04-03 09:05:12 +00:00
package config
import "github.com/urfave/cli/v2"
var Command *cli.Command
func init() {
Command = &cli.Command{
Name: "config",
Usage: "config some settings",
Subcommands: []*cli.Command{
UserCommand,
DatabaseCommand,
DNSCommand,
},
}
}