mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-30 05:41:12 +00:00
12 lines
202 B
Go
12 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,
|
|
},
|
|
}
|