scaffold/internal/command/all.go

10 lines
126 B
Go
Raw Normal View History

2020-02-20 08:31:22 +01:00
package command
import "github.com/urfave/cli/v2"
func All() []*cli.Command {
return []*cli.Command{
2020-04-07 08:44:21 +02:00
fromCommand(),
2020-02-20 08:31:22 +01:00
}
}