Files
kotlin-fork/proto/server_car/route.proto
T
2016-07-20 15:55:14 +03:00

20 lines
339 B
Protocol Buffer

syntax = "proto3";
package carkot;
option java_package = "proto.car";
option java_outer_classname = "Route";
message RouteRequest {
repeated WayPoint way_points = 1;
message WayPoint {
double distance = 2;
double angle_delta = 3;
}
}
message RouteResponse {
int32 code = 1;
string errorMsg = 2;
}