共计 364 个字符,预计需要花费 1 分钟才能阅读完成。
阐明:iris-framework 曾经蕴含了 jwt、xorm、mysql、godotenv
func main() {newApp()
}
func newApp() {app := iris.New()
app.Use(Middleware.CORS) // 跨域设置
routes.Register(app) // 注册路由
app.HandleDir("/upload", "public/upload") // 设置动态资源
// 启动 app
app.Run(iris.Addr(":" + os.Getenv("APP_PORT")),
iris.WithoutServerError(iris.ErrServerClosed),
iris.WithOptimizations,
)
}
具体详情请关注
github.com/nelsonkti/iris-framewor…
正文完