This commit is contained in:
lendry
2026-06-25 07:23:34 +03:00
parent f2366a69a0
commit 71b270fcb3
19 changed files with 1410 additions and 112 deletions

View File

@@ -31,6 +31,7 @@ import { NotificationPublisherService } from './infra/notification-publisher.ser
import { MinioService } from './infra/minio.service';
import { LdapClientService } from './infra/ldap-client.service';
import { MessagingService } from './infra/messaging.service';
import { SmsService } from './infra/sms.service';
import { TotpService } from './domain/totp.service';
@Module({
@@ -68,7 +69,8 @@ import { TotpService } from './domain/totp.service';
NotificationPublisherService,
MinioService,
LdapClientService,
MessagingService
MessagingService,
SmsService
]
})
export class AppModule {}