您最多能選擇 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()
|
||
|
}
|
||
|
|