tea/main.go

61 lines
1.3 KiB
Go
Raw Normal View History

// Copyright 2020 The Gitea Authors. All rights reserved.
2018-09-03 12:13:00 +05:30
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
// Tea is command line tool for Gitea.
package main // import "code.gitea.io/tea"
import (
"fmt"
2018-09-03 12:13:00 +05:30
"os"
"strings"
"code.gitea.io/tea/cmd"
"github.com/urfave/cli/v2"
2018-09-03 12:13:00 +05:30
)
// Version holds the current tea version
var Version = "development"
2018-09-03 12:13:00 +05:30
// Tags holds the build tags used
var Tags = ""
func main() {
app := cli.NewApp()
app.Name = "tea"
app.Usage = "Command line tool to interact with Gitea"
2018-09-03 12:13:00 +05:30
app.Version = Version + formatBuiltWith(Tags)
app.Commands = []*cli.Command{
&cmd.CmdLogin,
&cmd.CmdLogout,
&cmd.CmdIssues,
&cmd.CmdPulls,
&cmd.CmdReleases,
&cmd.CmdRepos,
&cmd.CmdLabels,
&cmd.CmdTrackedTimes,
&cmd.CmdOpen,
&cmd.CmdNotifications,
&cmd.CmdMilestones,
&cmd.CmdOrgs,
&cmd.CmdAutocomplete,
2018-09-03 12:13:00 +05:30
}
app.EnableBashCompletion = true
2018-09-03 12:13:00 +05:30
err := app.Run(os.Args)
if err != nil {
// app.Run already exits for errors implementing ErrorCoder,
// so we only handle generic errors with code 1 here.
fmt.Fprintf(app.ErrWriter, "Error: %v\n", err)
os.Exit(1)
2018-09-03 12:13:00 +05:30
}
}
func formatBuiltWith(Tags string) string {
if len(Tags) == 0 {
return ""
}
return " built with: " + strings.Replace(Tags, " ", ", ", -1)
}