16 lines
260 B
Go
16 lines
260 B
Go
|
package database
|
||
|
|
||
|
import "github.com/urfave/cli/v2"
|
||
|
|
||
|
func Root() *cli.Command {
|
||
|
return &cli.Command{
|
||
|
Name: "database",
|
||
|
Usage: "Database related commands",
|
||
|
Subcommands: []*cli.Command{
|
||
|
MigrateCommand(),
|
||
|
PingCommand(),
|
||
|
ResetCommand(),
|
||
|
},
|
||
|
}
|
||
|
}
|