This commit is contained in:
vipg
2025-12-26 12:48:34 +08:00
parent a89a826525
commit f82c867d70
2 changed files with 3 additions and 3 deletions

View File

@@ -8,8 +8,8 @@ import (
"go.uber.org/zap" "go.uber.org/zap"
) )
// Init 初始化基础设施 // Launch 初始化基础设施
func Init() { func Launch() {
launchLogger() launchLogger()
launchDB() launchDB()
cnfigGin() cnfigGin()

View File

@@ -10,7 +10,7 @@ import (
) )
func main() { func main() {
infra.Init() infra.Launch()
configRouter() configRouter()
startServe() startServe()
} }