1 Star 0 Fork 0

Ma.wenda/codegen

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.go 739 Bytes
一键复制 编辑 原始数据 按行查看 历史
mawenda@kxsz.net 提交于 2024-06-04 17:58 . 项目初始化
package main
import (
"codegen/commands"
"codegen/pkg/config"
"codegen/pkg/db"
"codegen/pkg/log"
"github.com/urfave/cli/v2"
"os"
)
func main() {
app := cli.NewApp()
app.Action = commands.Serve
app.Before = initConfig
app.Flags = []cli.Flag{
&cli.StringFlag{
Name: "config",
Value: "config",
Usage: "specify the location of the configuration file",
Required: false,
},
}
if err := app.Run(os.Args); err != nil {
log.Sugar().Fatal(err)
}
log.Flush()
}
// 初始化配置
func initConfig(*cli.Context) error {
// 读取配置
if err := config.LoadConfig(); err != nil {
return err
}
// 加载日志配置
log.InitFromViper()
// 加载数据库配置
db.InitFromViper()
return nil
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/wenda_repository/codegen.git
git@gitee.com:wenda_repository/codegen.git
wenda_repository
codegen
codegen
master

搜索帮助