From 1442eed6db7f6b0db06d69b16dbf06478081c781 Mon Sep 17 00:00:00 2001 From: Artemy Date: Mon, 14 Aug 2023 13:59:32 +0300 Subject: [PATCH] format: line breaks --- src/app.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/app.ts b/src/app.ts index be56c4b..49bbae8 100644 --- a/src/app.ts +++ b/src/app.ts @@ -1,12 +1,15 @@ import { IConfigService } from "./config/config.interface"; import { ConfigService } from "./config/config.service"; +import { Cached } from "./types/requests"; import NodeCache from "node-cache"; + import Fastify from "fastify"; import middie from "@fastify/middie"; -import { Cached } from "./types/requests"; + import getRoute from "./routes/getRoute"; import parseRoute from "./routes/parseRoute"; + class App { config: IConfigService; cache: NodeCache;