mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-07-15 18:27:05 +00:00
11 lines
327 B
TypeScript
11 lines
327 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { TypeOrmModule } from '@nestjs/typeorm';
|
|
import { DeviceNotificationEntity } from './entities';
|
|
@Module({
|
|
providers: [],
|
|
exports: [],
|
|
controllers: [],
|
|
imports: [TypeOrmModule.forFeature([DeviceNotificationEntity])],
|
|
})
|
|
export class DeviceNotificationRepositoryModule {}
|