summaryrefslogtreecommitdiffstats
path: root/gogs.go
diff options
context:
space:
mode:
Diffstat (limited to 'gogs.go')
-rw-r--r--gogs.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/gogs.go b/gogs.go
index bdec2a71ac..6bdc2e1e45 100644
--- a/gogs.go
+++ b/gogs.go
@@ -14,13 +14,13 @@ import (
"github.com/codegangsta/cli"
"github.com/gogits/gogs/cmd"
- "github.com/gogits/gogs/modules/base"
+ "github.com/gogits/gogs/modules/setting"
)
-const APP_VER = "0.3.5.0524 Alpha"
+const APP_VER = "0.3.5.0525 Alpha"
func init() {
- base.AppVer = APP_VER
+ setting.AppVer = APP_VER
runtime.GOMAXPROCS(runtime.NumCPU())
}