v2版本正式上线测试版
This commit is contained in:
23
V1/main.go
Normal file
23
V1/main.go
Normal file
@@ -0,0 +1,23 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"github.com/astaxie/beego"
|
||||
"github.com/george518/PPGo_Job/models"
|
||||
_ "github.com/george518/PPGo_Job/routers"
|
||||
"github.com/george518/PPGo_Job/jobs"
|
||||
)
|
||||
|
||||
const (
|
||||
VERSION = "1.0.0"
|
||||
)
|
||||
|
||||
func init() {
|
||||
//初始化数据模型
|
||||
models.Init()
|
||||
jobs.InitJobs()
|
||||
}
|
||||
|
||||
func main() {
|
||||
beego.BConfig.WebConfig.Session.SessionOn = true
|
||||
beego.Run()
|
||||
}
|
||||
Reference in New Issue
Block a user