initial commit
This commit is contained in:
29
proto/valhalla/status.proto
Normal file
29
proto/valhalla/status.proto
Normal file
@@ -0,0 +1,29 @@
|
||||
syntax = "proto3";
|
||||
option optimize_for = LITE_RUNTIME;
|
||||
option go_package = "git.coopgo.io/coopgo-platform/routing-service/proto/valhalla";
|
||||
package valhalla;
|
||||
|
||||
message Status {
|
||||
oneof has_has_tiles {
|
||||
bool has_tiles = 1;
|
||||
}
|
||||
oneof has_has_admins {
|
||||
bool has_admins = 2;
|
||||
}
|
||||
oneof has_has_timezones {
|
||||
bool has_timezones = 3;
|
||||
}
|
||||
oneof has_has_live_traffic {
|
||||
bool has_live_traffic = 4;
|
||||
}
|
||||
oneof has_bbox {
|
||||
string bbox = 5;
|
||||
}
|
||||
oneof has_version {
|
||||
string version = 6;
|
||||
}
|
||||
oneof has_tileset_last_modified {
|
||||
uint32 tileset_last_modified = 7;
|
||||
}
|
||||
repeated string available_actions = 8;
|
||||
}
|
||||
Reference in New Issue
Block a user