修复:为 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

10
backend/test.proto Normal file
View File

@@ -0,0 +1,10 @@
syntax = "proto3";
package test;
option go_package = "test/proto";
message TestMessage {
string name = 1;
int32 age = 2;
}