goweb/cmd/scaffold/command/all.go

12 lines
137 B
Go
Raw Normal View History

package command
import (
"github.com/urfave/cli/v2"
)
func All() []*cli.Command {
return []*cli.Command{
newProjectCommand(),
}
}