mirror of
https://github.com/hexedtech/codemp.git
synced 2024-11-22 15:24:48 +01:00
16 lines
212 B
Protocol Buffer
16 lines
212 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
package core;
|
||
|
|
||
|
service Session {
|
||
|
rpc Create (SessionRequest) returns (SessionResponse);
|
||
|
}
|
||
|
|
||
|
message SessionRequest {
|
||
|
int32 sessionId = 1;
|
||
|
}
|
||
|
|
||
|
message SessionResponse {
|
||
|
int32 sessionId = 1;
|
||
|
}
|
||
|
|