mirror of
https://github.com/harness/drone.git
synced 2025-05-10 22:21:22 +08:00
13 lines
194 B
Go
13 lines
194 B
Go
package main
|
|
|
|
import "github.com/codegangsta/cli"
|
|
|
|
var secretCmd = cli.Command{
|
|
Name: "secret",
|
|
Usage: "manage secrets",
|
|
Subcommands: []cli.Command{
|
|
secretAddCmd,
|
|
secretRemoveCmd,
|
|
},
|
|
}
|