Created
August 1, 2018 19:12
-
-
Save vialyx/d8e38e151bd291d75bd211b82187bbd0 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
import Vapor | |
/// Register your application's routes here. | |
public func routes(_ router: Router) throws { | |
router.get("departure") { request in | |
return """ | |
[ | |
{ | |
"company_name": "Belavia", | |
"departure_time": "05:00", | |
"flight": "A03GH", | |
"direction": "Milano", | |
"reseption": "19-20", | |
"gate": "B8", | |
"status": "departed" | |
}, | |
{ | |
"company_name": "Belavia", | |
"departure_time": "05:00", | |
"flight": "A03GH", | |
"direction": "Milano", | |
"reseption": "19-20", | |
"gate": "B8", | |
"status": "departed" | |
}, | |
{ | |
"company_name": "Belavia", | |
"departure_time": "05:00", | |
"flight": "A03GH", | |
"direction": "Milano", | |
"reseption": "19-20", | |
"gate": "B8", | |
"status": "departed" | |
}, | |
{ | |
"company_name": "Belavia", | |
"departure_time": "05:00", | |
"flight": "A03GH", | |
"direction": "Milano", | |
"reseption": "19-20", | |
"gate": "B8", | |
"status": "departed" | |
} | |
] | |
""" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment