mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender.git
synced 2025-07-16 01:28:48 +02:00
20 lines
310 B
Protocol Buffer
20 lines
310 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
import "modules.proto";
|
|
|
|
option go_package = "htwkalender/common/modules";
|
|
|
|
service RoomService {
|
|
rpc GetRoomEvents(GetRoomRequest) returns (GetRoomResponse) {}
|
|
}
|
|
|
|
message GetRoomResponse {
|
|
string room = 1;
|
|
repeated Event events = 2;
|
|
}
|
|
|
|
message GetRoomRequest {
|
|
string room = 1;
|
|
}
|
|
|