1
0
mirror of https://gitea.com/jolheiser/sip synced 2024-11-22 19:51:58 +01:00
sip/main.go
jolheiser 039c227402
Move log in/out commands to tokens command
Signed-off-by: jolheiser <john.olheiser@gmail.com>
2020-02-17 20:57:51 -06:00

31 lines
508 B
Go

package main
import (
"gitea.com/jolheiser/beaver"
"gitea.com/jolheiser/sip/cmd"
"github.com/urfave/cli/v2"
"os"
)
var Version = "develop"
func main() {
app := cli.NewApp()
app.Name = "Sip"
app.Usage = "Command line tool to interact with Gitea"
app.Version = Version
app.Commands = []*cli.Command{
&cmd.Config,
&cmd.Tokens,
&cmd.Repo,
&cmd.Issues,
&cmd.Pulls,
}
app.Flags = cmd.Flags
app.EnableBashCompletion = true
err := app.Run(os.Args)
if err != nil {
beaver.Error(err)
}
}