formidable/internal/command/root.go
William Petit f4b3d8f532 feat: aggregate defaults and values
- Output merged defaults and values
- Add "check" command
2022-09-27 22:23:18 +02:00

14 lines
161 B
Go

package command
import "github.com/urfave/cli/v2"
func Root() []*cli.Command {
return []*cli.Command{
Edit(),
Set(),
Get(),
Delete(),
Check(),
}
}