From ac2646a74a2182bc8a787c45f298ba8f520884c0 Mon Sep 17 00:00:00 2001 From: David Mehren Date: Sat, 24 Oct 2020 11:49:19 +0200 Subject: [PATCH] AppModule: Remove unused imports Signed-off-by: David Mehren --- src/app.module.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/app.module.ts b/src/app.module.ts index 240333086..9eb98ea4d 100644 --- a/src/app.module.ts +++ b/src/app.module.ts @@ -1,7 +1,5 @@ import { Module } from '@nestjs/common'; -import { ServeStaticModule } from '@nestjs/serve-static'; import { TypeOrmModule } from '@nestjs/typeorm'; -import { join } from 'path'; import { PublicApiModule } from './api/public/public-api.module'; import { AuthorsModule } from './authors/authors.module'; import { GroupsModule } from './groups/groups.module';