mirror of
https://github.com/Bornholm/formidable.git
synced 2024-12-23 15:29:33 +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(),
|
||
|
}
|
||
|
}
|