18 lines
250 B
Protocol Buffer
18 lines
250 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package core;
|
|
|
|
service CoreApi {
|
|
rpc GetSessions (SessionsRequest) returns (SessionsResponse) {}
|
|
}
|
|
|
|
message SessionsRequest {
|
|
}
|
|
|
|
message SessionsResponse {
|
|
repeated Session sessions = 1;
|
|
}
|
|
|
|
message Session {
|
|
int32 id = 1;
|
|
}
|