1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2025-02-04 18:21:06 +02:00
woodpecker/cli/main.go

46 lines
745 B
Go
Raw Normal View History

2014-07-16 00:34:23 -07:00
package main
import (
"github.com/codegangsta/cli"
"os"
)
2014-08-09 16:51:08 -07:00
var (
// commit sha for the current build.
version string = "0.3-dev"
revision string
)
2014-07-16 00:34:23 -07:00
func main() {
app := cli.NewApp()
app.Name = "drone"
2014-08-09 16:51:08 -07:00
app.Version = version
2014-07-16 00:34:23 -07:00
app.Usage = "command line utility"
2014-08-09 16:51:08 -07:00
app.Flags = []cli.Flag{
cli.StringFlag{
Name: "t, token",
Value: "",
Usage: "server auth token",
EnvVar: "DRONE_TOKEN",
},
cli.StringFlag{
Name: "s, server",
Value: "",
Usage: "server location",
EnvVar: "DRONE_SERVER",
},
}
2014-07-16 00:34:23 -07:00
app.Commands = []cli.Command{
2014-08-07 22:22:04 -07:00
NewBuildCommand(),
NewReposCommand(),
NewStatusCommand(),
2014-07-16 00:34:23 -07:00
NewEnableCommand(),
NewDisableCommand(),
NewRestartCommand(),
NewWhoamiCommand(),
}
app.Run(os.Args)
}