加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.go 676 Bytes
一键复制 编辑 原始数据 按行查看 历史
火线兔 提交于 2024-10-09 16:37 . 更新TuuzNet
package main
import (
"github.com/gin-gonic/gin"
"github.com/tobycroft/Calc"
"main.go/config/app_conf"
"main.go/route"
"os"
"time"
)
func init() {
time.Local = app_conf.TimeZone
if app_conf.TestMode == false {
s, err := os.Stat("./log/")
if err != nil {
os.Mkdir("./log", 0755)
} else if s.IsDir() {
os.Mkdir("./log", 0755)
}
}
}
func main() {
Calc.RefreshBaseNum()
go route.MainWsRouter()
mainroute := gin.Default()
//gin.SetMode(gin.ReleaseMode)
//gin.DefaultWriter = ioutil.Discard
mainroute.SetTrustedProxies([]string{"0.0.0.0/0"})
mainroute.SecureJsonPrefix(app_conf.SecureJsonPrefix)
route.OnRoute(mainroute)
mainroute.Run(":80")
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化