mirror of
https://github.com/drone/drone-cli.git
synced 2024-11-23 01:11:57 +01:00
17 lines
282 B
Go
17 lines
282 B
Go
package template
|
|
|
|
import "github.com/urfave/cli"
|
|
|
|
var Command = cli.Command{
|
|
Name: "template",
|
|
Usage: "manage templates",
|
|
Subcommands: []cli.Command{
|
|
templateCreateCmd,
|
|
templateInfoCmd,
|
|
templateListCmd,
|
|
templateCreateCmd,
|
|
templateUpdateCmd,
|
|
templateDeleteCmd,
|
|
},
|
|
}
|