diff options
author | Logan Hunt <loganhunt@simponic.xyz> | 2022-03-30 22:15:20 -0600 |
---|---|---|
committer | Logan Hunt <loganhunt@simponic.xyz> | 2022-03-30 22:15:20 -0600 |
commit | 42cf50ee7521bd751f4d0f0798276e548bb83fee (patch) | |
tree | 5b2e8877a137a9b62ea630cc69135183804131d5 /server/app.module.ts | |
parent | ae0c829453d4663203887979349047850cb98626 (diff) | |
download | locchat-42cf50ee7521bd751f4d0f0798276e548bb83fee.tar.gz locchat-42cf50ee7521bd751f4d0f0798276e548bb83fee.zip |
Working
Diffstat (limited to 'server/app.module.ts')
-rw-r--r-- | server/app.module.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/app.module.ts b/server/app.module.ts index 5fc4654..60cf865 100644 --- a/server/app.module.ts +++ b/server/app.module.ts @@ -5,7 +5,7 @@ import { AppController } from './app.controller'; import { config } from './database/config'; import { ChatRoomModule } from './modules/chat_room.module'; import { UsersModule } from './modules/users.module'; -import { PingGateway } from './providers/gateways/ping.gateway'; +import { ChatRoomGateway } from './providers/gateways/chat_room.gateway'; import { AuthGuard } from './providers/guards/auth.guard'; import { RolesGuard } from './providers/guards/roles.guard'; import { ChatRoomService } from './providers/services/chat_room.service'; @@ -18,7 +18,7 @@ import { GuardUtil } from './providers/util/guard.util'; imports: [TypeOrmModule.forRoot(config), UsersModule, ChatRoomModule], controllers: [AppController], providers: [ - PingGateway, + ChatRoomGateway, UsersService, RolesService, JwtService, |