mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender.git
synced 2025-08-09 13:17:46 +02:00
feat:#16 added room ics api route
This commit is contained in:
19
services/protobuf/room.proto
Normal file
19
services/protobuf/room.proto
Normal file
@@ -0,0 +1,19 @@
|
||||
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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user