1 Star 0 Fork 903

纹刀客/gfast

forked from tiger1103/gfast 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
main.go 670 Bytes
一键复制 编辑 原始数据 按行查看 历史
tiger1103 提交于 2022-04-25 09:24 . 系统初始化tags
package main
import (
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gctx"
"github.com/gogf/gf/v2/os/glog"
_ "github.com/tiger1103/gfast/v3/internal/app/system/packed"
"github.com/tiger1103/gfast/v3/internal/app/system/service"
"github.com/tiger1103/gfast/v3/internal/cmd"
)
func init() {
ctx := gctx.New()
if service.SysInitConfig["autoInit"].Bool() && service.SysInit().IsCreateConfigFile() {
// 加载配置文件
err := service.SysInit().LoadConfigFile()
if err != nil {
g.Log().Panic(ctx, err)
}
}
}
func main() {
g.Log().SetFlags(glog.F_ASYNC | glog.F_TIME_DATE | glog.F_TIME_TIME | glog.F_FILE_LONG)
cmd.Main.Run(gctx.New())
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/wendaoke/gfast.git
[email protected]:wendaoke/gfast.git
wendaoke
gfast
gfast
os-v3

搜索帮助