Skip to content

Commit cc256eb

Browse files
committed
Fix linting problems
1 parent 41fedd1 commit cc256eb

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/http/drivers/FastifyServer.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,11 @@ export class FastifyServer implements Process {
1616
private server: Fastify.FastifyInstance = Fastify()
1717
private isAlive: boolean = false
1818

19-
constructor(public routes: RouterMap, private port: number = 8080, private host: string = "127.0.0.1") {
19+
constructor(
20+
public routes: RouterMap,
21+
private port: number = 8080,
22+
private host: string = "127.0.0.1"
23+
) {
2024
for (let route of routes) {
2125
switch (route.method) {
2226
case "GET":

0 commit comments

Comments
 (0)