mirror of
https://github.com/drone/drone-cli.git
synced 2025-02-18 07:31:13 +01:00
14 lines
216 B
Go
14 lines
216 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,
|
|
logViewCmd,
|
|
},
|
|
}
|