1
0
mirror of https://github.com/drone/drone-cli.git synced 2025-02-18 07:31:13 +01:00
drone-cli/drone/log/log.go
2018-09-20 16:04:58 -07:00

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,
},
}