Skip to content

Commit

Permalink
refactor(#10): test file deleted
Browse files Browse the repository at this point in the history
  • Loading branch information
NicoDora committed Sep 22, 2023
1 parent f74b40e commit 68c6d4e
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 24 deletions.
8 changes: 2 additions & 6 deletions src/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@ import { UserModule } from './users/user.module';
import { Module, NestModule } from '@nestjs/common';
import { TypeOrmModule } from '@nestjs/typeorm';
import { TypeORMconfig } from './config/typeorm.config';
import { Test1Controller } from './test1/test1.controller';
import { Test1Service } from './test1/test1.service';
import { Test1Module } from './test1/test1.module';
import { ConfigModule } from '@nestjs/config';
import { MongooseModule } from '@nestjs/mongoose';
import { ChatModule } from './chat/chat.module';
Expand All @@ -32,7 +29,6 @@ import { UserRepository } from './users/repository/user.repository';
// entities: [Image], // Image 엔티티 추가
}),
// TypeOrmModule.forFeature([Image]),
Test1Module,
ConfigModule.forRoot({
isGlobal: true,
envFilePath: '.env', // .env 파일 경로 설정
Expand All @@ -44,8 +40,8 @@ import { UserRepository } from './users/repository/user.repository';
FriendModule,
NoticeModule,
],
controllers: [AuthController, Test1Controller],
providers: [AuthService, UserRepository, NaverStrategy, KakaoStrategy, Test1Service, S3Service],
controllers: [AuthController,],
providers: [AuthService, UserRepository, NaverStrategy, KakaoStrategy, S3Service],
})
export class AppModule implements NestModule {
private readonly isDev: boolean =
Expand Down
4 changes: 0 additions & 4 deletions src/test1/test1.controller.ts

This file was deleted.

10 changes: 0 additions & 10 deletions src/test1/test1.module.ts

This file was deleted.

4 changes: 0 additions & 4 deletions src/test1/test1.service.ts

This file was deleted.

0 comments on commit 68c6d4e

Please sign in to comment.