formidable/internal/command/root.go

14 lines
161 B
Go
Raw Normal View History

2022-03-22 09:21:55 +01:00
package command
import "github.com/urfave/cli/v2"
func Root() []*cli.Command {
return []*cli.Command{
Edit(),
Set(),
Get(),
Delete(),
Check(),
2022-03-22 09:21:55 +01:00
}
}