1 |
rakin |
325 |
import KeyValuePair from "../types/KeyValuePair"; |
2 |
|
|
import Response from "./Response"; |
3 |
|
|
|
4 |
rakin |
323 |
export default class Controller { |
5 |
rakin |
348 |
constructor() { |
6 |
|
|
console.log("Constructor call"); |
7 |
|
|
} |
8 |
|
|
|
9 |
rakin |
325 |
protected response(body: string, status: number = 200, headers: KeyValuePair<string> = {}) { |
10 |
|
|
return new Response(status, body, headers); |
11 |
|
|
} |
12 |
rakin |
348 |
|
13 |
|
|
globalMiddleware(): Function[] { |
14 |
|
|
return []; |
15 |
|
|
} |
16 |
|
|
|
17 |
|
|
middleware(): KeyValuePair<Function[]> { |
18 |
|
|
return {}; |
19 |
|
|
} |
20 |
rakin |
323 |
} |