mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-03-03 15:22:25 +02:00
- 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
13 lines
202 B
Go
13 lines
202 B
Go
package log
|
|
|
|
import "github.com/urfave/cli"
|
|
|
|
// Command exports the build command set.
|
|
var Command = cli.Command{
|
|
Name: "log",
|
|
Usage: "manage logs",
|
|
Subcommands: []cli.Command{
|
|
logPurgeCmd,
|
|
},
|
|
}
|