- removed: api-service

- removed: session-service
- updated: moved health check out of consul registration
- updated: get service info to pull the service from the default namespace for the service account
- updated: the rest of the services to be able to handle the new database tables
This commit is contained in:
2025-03-20 22:53:49 -04:00
parent b9ebdd7080
commit 4046f56191
60 changed files with 233 additions and 30588 deletions

View File

@@ -10,12 +10,12 @@ service CharacterDbService {
}
message CharacterRequest {
int32 user_id = 1;
string user_id = 1;
int32 character_id = 2;
}
message CharacterListRequest {
int32 user_id = 1;
string user_id = 1;
}
message CharacterListResponse {
@@ -38,7 +38,7 @@ message CreateCharacterResponse {
}
message DeleteCharacterRequest {
int32 user_id = 1;
string user_id = 1;
int32 character_id = 2;
int32 delete_type = 3;
}

View File

@@ -0,0 +1,16 @@
syntax = "proto3";
package session_db_api;
service SessionService {
rpc GetSession(GetSessionRequest) returns (GetSessionResponse);
}
message GetSessionRequest {
string session_id = 1;
}
message GetSessionResponse {
string session_id = 1;
string user_id = 2;
}