mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender.git
synced 2025-07-16 09:38:49 +02:00
24 lines
389 B
Protocol Buffer
24 lines
389 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option go_package = "htwkalender/common/modules";
|
|
|
|
service FeedService {
|
|
rpc GetFeed(GetFeedRequest) returns (GetFeedResponse) {}
|
|
}
|
|
|
|
message Feed {
|
|
string id = 1;
|
|
string modules = 2;
|
|
string retrieved = 3;
|
|
string created = 4;
|
|
string updated = 5;
|
|
bool deleted = 6;
|
|
}
|
|
|
|
message GetFeedRequest {
|
|
string id = 1;
|
|
}
|
|
|
|
message GetFeedResponse {
|
|
Feed feed = 1;
|
|
} |