v2版本正式上线测试版

This commit is contained in:
george
2018-07-13 17:53:34 +08:00
parent 092ecf605b
commit 7bbe5585d8
661 changed files with 40153 additions and 2053 deletions

15
main.go
View File

@@ -1,10 +1,17 @@
/************************************************************
** @Description: PPGo_Job2
** @Author: haodaquan
** @Date: 2018-06-05 22:24
** @Last Modified by: haodaquan
** @Last Modified time: 2018-06-05 22:24
*************************************************************/
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"
"github.com/george518/PPGo_Job2/jobs"
"github.com/george518/PPGo_Job2/models"
_ "github.com/george518/PPGo_Job2/routers"
)
const (
@@ -20,4 +27,4 @@ func init() {
func main() {
beego.BConfig.WebConfig.Session.SessionOn = true
beego.Run()
}
}