1
0
mirror of https://github.com/drone/drone-cli.git synced 2024-11-23 01:11:57 +01:00
drone-cli/drone/template/template.go
2021-05-21 14:03:48 +01:00

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,
},
}