summaryrefslogtreecommitdiff
path: root/server/app.module.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/app.module.ts')
-rw-r--r--server/app.module.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/server/app.module.ts b/server/app.module.ts
index d0135c1..bbc3c1c 100644
--- a/server/app.module.ts
+++ b/server/app.module.ts
@@ -4,6 +4,7 @@ import { TypeOrmModule } from '@nestjs/typeorm';
import { AppController } from './app.controller';
import { config } from './database/config';
import { UsersModule } from './modules/users.module';
+import { PingGateway } from './providers/gateways/ping.gateway';
import { AuthGuard } from './providers/guards/auth.guard';
import { RolesGuard } from './providers/guards/roles.guard';
import { JwtService } from './providers/services/jwt.service';
@@ -15,6 +16,7 @@ import { GuardUtil } from './providers/util/guard.util';
imports: [TypeOrmModule.forRoot(config), UsersModule],
controllers: [AppController],
providers: [
+ PingGateway,
UsersService,
RolesService,
JwtService,