码农笔录博客源码
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.

24 lignes
398 B

il y a 6 ans
package main
import (
_ "beeblog/routers"
"github.com/astaxie/beego"
"beeblog/models"
il y a 6 ans
"beeblog/filter"
il y a 6 ans
"github.com/astaxie/beego/orm"
)
func init() {
models.RegistDB()
il y a 6 ans
beego.InsertFilter("/*", beego.BeforeRouter, filter.FilterAdmin)
beego.InsertFilter("/*", beego.BeforeRouter, filter.FilterAdmin1)
il y a 6 ans
}
func main() {
orm.Debug = true
orm.RunSyncdb("default",false,true)
il y a 6 ans
il y a 6 ans
beego.Run()
}