Initial commit

This commit is contained in:
Ilya Groshev
2026-04-14 09:28:26 +03:00
commit 02f511f40c
161 changed files with 21541 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
syntax = "proto3";
option go_package = "lunar-tear/server/gen/proto;proto";
import "proto/data.proto";
package apb.api.character;
service CharacterService {
rpc Rebirth (RebirthRequest) returns (RebirthResponse);
}
message RebirthRequest {
int32 characterId = 1;
int32 rebirthCount = 2;
}
message RebirthResponse {
map<string, apb.api.data.DiffData> diffUserData = 99;
}