mirror of
https://gitea.com/jolheiser/sip
synced 2024-11-23 04:12:00 +01:00
30 lines
536 B
Go
30 lines
536 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"gitea.com/jolheiser/beaver"
|
||
|
"gitea.com/jolheiser/tea/cmd"
|
||
|
"github.com/urfave/cli/v2"
|
||
|
"os"
|
||
|
)
|
||
|
|
||
|
var Version = "develop"
|
||
|
|
||
|
func main() {
|
||
|
app := cli.NewApp()
|
||
|
app.Name = "Tea"
|
||
|
app.Usage = "Command line tool to interact with Gitea"
|
||
|
app.Version = Version
|
||
|
app.Commands = []*cli.Command{
|
||
|
&cmd.Login,
|
||
|
&cmd.Logout,
|
||
|
&cmd.Repo,
|
||
|
&cmd.Issues,
|
||
|
}
|
||
|
app.Flags = cmd.Flags
|
||
|
app.EnableBashCompletion = true
|
||
|
err := app.Run(os.Args)
|
||
|
if err != nil {
|
||
|
beaver.Fatalf("Failed to run app with %s: %v", os.Args, err)
|
||
|
}
|
||
|
}
|