remove unused app controller and service

This commit is contained in:
Sven Czarnian
2022-10-22 17:19:00 +02:00
parent a7fd89b7c2
commit 5718d6bcf8
4 changed files with 2 additions and 46 deletions

View File

@@ -1,8 +1,6 @@
import { Module } from '@nestjs/common';
import { ConfigModule, ConfigService } from '@nestjs/config';
import { MongooseModule } from '@nestjs/mongoose';
import { AppController } from './app.controller';
import { AppService } from './app.service';
import Configuration from './config/configuration';
@Module({
@@ -23,7 +21,7 @@ import Configuration from './config/configuration';
}),
}),
],
controllers: [AppController],
providers: [AppService],
controllers: [],
providers: [],
})
export class AppModule {}