定时任务管理
This commit is contained in:
郝大全
2017-06-23 12:24:42 +08:00
commit 34bfe3d354
77 changed files with 16609 additions and 0 deletions

21
main.go Normal file
View File

@@ -0,0 +1,21 @@
package main
import (
"PPGo_Job/models"
_ "PPGo_Job/routers"
"github.com/astaxie/beego"
)
const (
VERSION = "1.0.0"
)
func init() {
//初始化数据模型
models.Init()
}
func main() {
beego.Run()
}