We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41fedd1 commit cc256ebCopy full SHA for cc256eb
src/http/drivers/FastifyServer.ts
@@ -16,7 +16,11 @@ export class FastifyServer implements Process {
16
private server: Fastify.FastifyInstance = Fastify()
17
private isAlive: boolean = false
18
19
- constructor(public routes: RouterMap, private port: number = 8080, private host: string = "127.0.0.1") {
+ constructor(
20
+ public routes: RouterMap,
21
+ private port: number = 8080,
22
+ private host: string = "127.0.0.1"
23
+ ) {
24
for (let route of routes) {
25
switch (route.method) {
26
case "GET":
0 commit comments