mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-12 08:23:48 +02:00
188b9e6eb5
- move cli files from `cli/drone` to `cli/` - move cli main to `cmd/cli/main.go` to match agent and server - use version from `version/version.go` to match agent and server
17 lines
284 B
Go
17 lines
284 B
Go
package secret
|
|
|
|
import "github.com/urfave/cli"
|
|
|
|
// Command exports the secret command.
|
|
var Command = cli.Command{
|
|
Name: "secret",
|
|
Usage: "manage secrets",
|
|
Subcommands: []cli.Command{
|
|
secretCreateCmd,
|
|
secretDeleteCmd,
|
|
secretUpdateCmd,
|
|
secretInfoCmd,
|
|
secretListCmd,
|
|
},
|
|
}
|