mirror of
https://github.com/Bornholm/formidable.git
synced 2024-12-25 00:09:35 +01:00
14 lines
161 B
Go
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(),
|
|
}
|
|
}
|