-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Denis Chaplygin
committed
Aug 26, 2019
1 parent
3f34c8d
commit f6f86b2
Showing
9 changed files
with
3,643 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
include "match.fbs"; | ||
include "nearest.fbs"; | ||
include "route.fbs"; | ||
include "table.fbs"; | ||
include "trip.fbs"; | ||
|
||
namespace osrm.engine.api.fbresult; | ||
|
||
union ServiceResponse { | ||
match: Match, | ||
nearest: Nearest, | ||
route: Route, | ||
table: Table, | ||
trip: Trip | ||
} | ||
|
||
table FBResult { | ||
code: string; | ||
message: string; | ||
response: ServiceResponse; | ||
} |
Oops, something went wrong.