mirror of
https://github.com/Bornholm/formidable.git
synced 2024-12-27 17:29:34 +01:00
13 lines
150 B
Go
13 lines
150 B
Go
package command
|
|
|
|
import "github.com/urfave/cli/v2"
|
|
|
|
func Root() []*cli.Command {
|
|
return []*cli.Command{
|
|
Edit(),
|
|
Set(),
|
|
Get(),
|
|
Delete(),
|
|
}
|
|
}
|