1
0
mirror of https://github.com/khorevaa/kubodin.git synced 2025-03-03 15:32:43 +02:00
kubodin/cmd/commands.go
2021-03-04 14:14:13 +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
}