mirror of https://github.com/rancher/wins.git
20 lines
353 B
Go
20 lines
353 B
Go
package app
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/rancher/wins/pkg/defaults"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
func NewCommand() *cli.Command {
|
|
return &cli.Command{
|
|
Name: "app",
|
|
Aliases: []string{"application"},
|
|
Usage: fmt.Sprintf("Manage %s Application", defaults.WindowsServiceDisplayName),
|
|
Subcommands: []*cli.Command{
|
|
runCommand(),
|
|
},
|
|
}
|
|
}
|