12 lines
178 B
Protocol Buffer
12 lines
178 B
Protocol Buffer
// proto/common.proto
|
|
syntax = "proto3";
|
|
package komp_ac.common;
|
|
|
|
message Empty {}
|
|
message CountResponse {
|
|
int64 count = 1;
|
|
}
|
|
message PositionRequest {
|
|
int64 position = 1;
|
|
}
|