码农笔录博客源码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.1 KiB

6 years ago
package main
import (
"beeblog/filter"
"beeblog/models"
6 years ago
_ "beeblog/routers"
3 years ago
"github.com/beego/beego/v2/client/orm"
"github.com/beego/beego/v2/core/logs"
beego "github.com/beego/beego/v2/server/web"
"github.com/beego/beego/v2/server/web/filter/cors"
6 years ago
)
func init() {
models.RegistDB()
5 years ago
beego.InsertFilter("/*", beego.BeforeRouter, filter.LogFilter)
beego.InsertFilter("/api/*", beego.BeforeRouter, filter.FilterAdmin)
6 years ago
}
func main() {
5 years ago
orm.Debug = false
3 years ago
beego.AddFuncMap("NAdd", NAdd)
5 years ago
logs.SetLogger(logs.AdapterFile, `{"filename":"/opt/logs/aiprose.log","level":1}`)
5 years ago
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,
}))
6 years ago
beego.Run()
}
3 years ago
func NAdd(n1 int, n2 int) int {
return n1 + n2
}