1
0
mirror of https://github.com/drone/drone-cli.git synced 2024-11-23 09:21:56 +01:00

add log package

This commit is contained in:
Tony Li 2018-02-20 14:43:20 -05:00
parent 133ae30ec1
commit 84bf9602c1
No known key found for this signature in database
GPG Key ID: E73DA11CDB50D072

12
drone/log/log.go Normal file

@ -0,0 +1,12 @@
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,
},
}