mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-11-26 11:34:53 +00:00
12 lines
327 B
TypeScript
12 lines
327 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { TypeOrmModule } from '@nestjs/typeorm';
|
|
import { GroupDeviceEntity } from './entities/group.device.entity';
|
|
|
|
@Module({
|
|
providers: [],
|
|
exports: [],
|
|
controllers: [],
|
|
imports: [TypeOrmModule.forFeature([GroupDeviceEntity])],
|
|
})
|
|
export class GroupDeviceRepositoryModule {}
|