feat: handle notification async using event emitter

This commit is contained in:
Abdalhamid Alhamad
2024-12-29 11:44:51 +03:00
parent 5663a287f9
commit f383f6d14d
13 changed files with 57 additions and 15 deletions

View File

@ -19,6 +19,6 @@ import { AccessTokenStrategy } from './strategies';
],
providers: [AuthService, UserRepository, UserService, DeviceService, DeviceRepository, AccessTokenStrategy],
controllers: [AuthController],
exports: [UserService, DeviceService],
exports: [DeviceService, UserService],
})
export class AuthModule {}