码农笔录博客源码
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

37 linhas
1.1 KiB

há 6 anos
package main
import (
"beeblog/filter"
"beeblog/models"
há 6 anos
_ "beeblog/routers"
"github.com/astaxie/beego"
"github.com/astaxie/beego/logs"
há 6 anos
"github.com/astaxie/beego/orm"
há 6 anos
"github.com/astaxie/beego/plugins/cors"
há 6 anos
)
func init() {
models.RegistDB()
beego.InsertFilter("/*", beego.BeforeRouter, filter.LogFilter)
beego.InsertFilter("/api/*", beego.BeforeRouter, filter.FilterAdmin)
há 6 anos
}
func main() {
há 6 anos
orm.Debug = false
orm.RunSyncdb("default", false, true)
beego.AddFuncMap("NAdd",NAdd)
há 5 anos
logs.SetLogger(logs.AdapterFile, `{"filename":"/opt/logs/aiprose.log","level":1}`)
há 6 anos
beego.InsertFilter("*", beego.BeforeRouter, cors.Allow(&cors.Options{
AllowAllOrigins: true,
AllowMethods: []string{"GET", "POST", "PUT", "DELETE", "OPTIONS"},
AllowHeaders: []string{"Origin", "Authorization", "Access-Control-Allow-Origin", "Access-Control-Allow-Headers", "Content-Type"},
ExposeHeaders: []string{"Content-Length", "Access-Control-Allow-Origin", "Access-Control-Allow-Headers", "Content-Type"},
AllowCredentials: true,
}))
há 6 anos
beego.Run()
}
func NAdd(n1 int, n2 int) int{
return n1 + n2
}