Skip to content

Commit

Permalink
feat: 디스코드 웹훅 ON
Browse files Browse the repository at this point in the history
  • Loading branch information
w8385 committed May 25, 2024
1 parent 6c61f3c commit a52855b
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/app.module.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import { Module } from '@nestjs/common';
import { ConfigModule } from '@nestjs/config';
import { APP_FILTER } from '@nestjs/core';

import { AuthModule } from './auth/auth.module';
import { AllExceptionsFilter } from './common/filters/all-exception.filter';
import { DebugModule } from './debug/debug.module';
import { EventModule } from './event/event.module';
import { GroupModule } from './group/group.module';
Expand All @@ -21,10 +23,10 @@ import { UserModule } from './user/user.module';
UserModule,
],
providers: [
// {
// provide: APP_FILTER,
// useClass: AllExceptionsFilter,
// },
{
provide: APP_FILTER,
useClass: AllExceptionsFilter,
},
],
})
export class AppModule {}

0 comments on commit a52855b

Please sign in to comment.