修复:为 user-svc 添加健康检查和启动顺序控制

This commit is contained in:
fish
2026-03-28 21:54:09 +08:00
parent 5ac0a52bb1
commit c5260bcae8
31 changed files with 1995 additions and 167 deletions

View File

@@ -4,12 +4,13 @@ import (
"fmt"
"log"
"backend/services/user-svc/internal/config"
"backend/services/user-svc/internal/grpcserver"
"backend/services/user-svc/internal/repository"
"backend/services/user-svc/internal/service"
"backend/shared/pkg/database"
"backend/shared/pkg/logger"
"user-svc/internal/config"
"user-svc/internal/grpcserver"
"user-svc/internal/repository"
"user-svc/internal/service"
"shared/pkg/database"
"shared/pkg/logger"
)
func main() {