mirror of
https://github.com/hexedtech/codemp-nvim.git
synced 2024-11-22 15:34:53 +01:00
15 lines
212 B
Protocol Buffer
15 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;
|
|
}
|
|
|