You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gitea-fork-majority-judgment/gogs.go

42 lines
815 B

10 years ago
// +build go1.2
// Copyright 2014 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
10 years ago
// Gogs(Go Git Service) is a Self Hosted Git Service in the Go Programming Language.
10 years ago
package main
import (
"os"
"runtime"
10 years ago
"github.com/codegangsta/cli"
10 years ago
"github.com/gogits/gogs/cmd"
10 years ago
"github.com/gogits/gogs/modules/setting"
10 years ago
)
10 years ago
const APP_VER = "0.3.5.0525 Alpha"
10 years ago
10 years ago
func init() {
10 years ago
setting.AppVer = APP_VER
runtime.GOMAXPROCS(runtime.NumCPU())
10 years ago
}
10 years ago
func main() {
app := cli.NewApp()
app.Name = "Gogs"
app.Usage = "Go Git Service"
app.Version = APP_VER
app.Commands = []cli.Command{
cmd.CmdWeb,
// cmd.CmdFix,
cmd.CmdDump,
cmd.CmdServ,
cmd.CmdUpdate,
}
10 years ago
app.Flags = append(app.Flags, []cli.Flag{}...)
app.Run(os.Args)
10 years ago
}