Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
19 lignes
245 B
19 lignes
245 B
il y a 6 ans
|
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()
|
||
|
}
|
||
|
|