Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
main.go 535 Bytes
Copy Edit Raw Blame History
梁杰s authored 2022-04-24 21:03 . commit
// snowy-video-serve project main.go
package main
import (
"snowy-video-serve/core"
"snowy-video-serve/global"
"snowy-video-serve/initialize"
)
func main() {
core.Viper() // 初始化Viper
global.SYS_LOG = core.Zap() // 初始化zap日志库
global.SYS_DB = initialize.Gorm() // gorm连接数据库
if global.SYS_DB != nil {
// initialize.MysqlTables(global.SYS_DB) // 初始化表
// 程序结束前关闭数据库链接
db, _ := global.SYS_DB.DB()
defer db.Close()
}
core.RunServer()
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化