reCoreD-UI/cmd/config/config.go

14 lines
213 B
Go
Raw Normal View History

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