2023-02-09 12:16:36 +01:00
|
|
|
package app
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/urfave/cli/v2"
|
|
|
|
)
|
|
|
|
|
|
|
|
func Root() *cli.Command {
|
|
|
|
return &cli.Command{
|
|
|
|
Name: "app",
|
|
|
|
Usage: "App related commands",
|
|
|
|
Subcommands: []*cli.Command{
|
|
|
|
RunCommand(),
|
|
|
|
PackageCommand(),
|
2023-03-20 16:40:08 +01:00
|
|
|
HashPasswordCommand(),
|
2023-02-09 12:16:36 +01:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|