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"
)
// Init 初始化基础设施
func Init() {
// Launch 初始化基础设施
func Launch() {
launchLogger()
launchDB()
cnfigGin()

View File

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