1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2025-01-17 17:45:03 +02:00
woodpecker/drone/secret.go

13 lines
194 B
Go
Raw Normal View History

2016-04-23 04:27:28 -07:00
package main
import "github.com/codegangsta/cli"
2016-04-23 04:27:28 -07:00
var secretCmd = cli.Command{
2016-04-23 04:27:28 -07:00
Name: "secret",
Usage: "manage secrets",
Subcommands: []cli.Command{
secretAddCmd,
secretRemoveCmd,
2016-04-23 04:27:28 -07:00
},
}