This commit is contained in:
2026-07-26 02:43:22 +07:00
parent fc9753e069
commit a6b2bc1f60
8 changed files with 225 additions and 39 deletions
+10
View File
@@ -229,6 +229,16 @@ service EveningDetectiveServer {
};
}
rpc GetFullScenario(GetScenarioReq) returns (GetScenarioRsp) {
option (google.api.http) = {
get: "/api/scenarios/{id}/full"
};
option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation) = {
tags : "Сценарии";
summary: "Получить сценарий со всеми деталями по id";
};
}
rpc GetScenario(GetScenarioReq) returns (GetScenarioRsp) {
option (google.api.http) = {
get: "/api/scenarios/{id}"