22 lines
542 B
TypeScript
22 lines
542 B
TypeScript
import { Module } from '@nestjs/common';
|
|
|
|
import { PrismaService } from './prisma.service';
|
|
import { AuthAccessAttemptDao } from './auth-access-attempt.dao';
|
|
import { IdentityAuthDeviceDao } from './identity-auth-device.dao';
|
|
import { SystemSettingsDao } from './system-settings.dao';
|
|
|
|
@Module({
|
|
providers: [
|
|
PrismaService,
|
|
AuthAccessAttemptDao,
|
|
IdentityAuthDeviceDao,
|
|
SystemSettingsDao,
|
|
],
|
|
exports: [
|
|
AuthAccessAttemptDao,
|
|
IdentityAuthDeviceDao,
|
|
SystemSettingsDao,
|
|
],
|
|
})
|
|
export class PersistenceModule {}
|