Template
1
0
mirror of https://github.com/khorevaa/go-app-template.git synced 2025-06-06 22:36:19 +02:00
go-app-template/cmd/commands.go
2021-03-04 14:02:23 +03:00

20 lines
220 B
Go

package cmd
import (
"github.com/urfave/cli/v2"
)
var Commands = []Command{
&someCommand{},
//&commandWithSub{
// sub: []Command{
// &subCommand{},
// },
//},
}
type Command interface {
Cmd() *cli.Command
}