Files
ppgo_job/main.go

22 lines
234 B
Go
Raw Normal View History

2017-06-23 12:24:42 +08:00
package main
import (
2017-06-23 13:14:42 +08:00
"github.com/PPGo_Job/models"
_ "github.com/PPGo_Job/routers"
2017-06-23 12:24:42 +08:00
"github.com/astaxie/beego"
)
const (
VERSION = "1.0.0"
)
func init() {
//初始化数据模型
models.Init()
}
func main() {
beego.Run()
}