您最多选择25个主题
主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
19 行
245 B
19 行
245 B
6 年前
|
package main
|
||
|
|
||
|
import (
|
||
|
_ "beeblog/routers"
|
||
|
"github.com/astaxie/beego"
|
||
|
"beeblog/models"
|
||
|
"github.com/astaxie/beego/orm"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
models.RegistDB()
|
||
|
}
|
||
|
func main() {
|
||
|
orm.Debug = true
|
||
|
orm.RunSyncdb("default",false,true)
|
||
|
beego.Run()
|
||
|
}
|
||
|
|