Files
ppgo_job/main.go
郝大全 34bfe3d354 初版
定时任务管理
2017-06-23 12:24:42 +08:00

22 lines
212 B
Go

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()
}