unicafe-cli
Version:
A command-line tool to get data of University of Helsinki's restaurants, Unicafe
18 lines (17 loc) • 443 B
JavaScript
module.exports = {
uris: {
restaurants: "http://messi.hyyravintolat.fi/publicapi/restaurants",
menu: function(id) {
if (id === undefined)
throw "Id is required!"
return "http://messi.hyyravintolat.fi/publicapi/restaurant/" + id
}
},
areacodes: {
1: "Keskusta",
2: "Kumpula",
3: "Meilahti",
5: "Viikki",
6: "Metropolia"
}
}