9 lines
132 B
Protocol Buffer
9 lines
132 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
|
|
import "RoutePoint.proto";
|
|
|
|
message Route {
|
|
repeated RoutePoint route_points = 1;
|
|
uint32 route_type = 2;
|
|
}
|