12 lines
277 B
JavaScript
12 lines
277 B
JavaScript
|
|
|
|
export class PuckoPruttApi {
|
|
constructor() {
|
|
this.apiUrl = "https://api.puckoprutt.tech"
|
|
this.schema = this.apiUrl + "/schema/"
|
|
}
|
|
|
|
dagens_lunch(spider) {
|
|
return fetch(this.apiUrl + "/dagens_lunch/" + spider + "/", {method: "GET"});
|
|
}
|
|
} |