mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-07-14 09:57:28 +00:00
10 lines
269 B
TypeScript
10 lines
269 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { TypeOrmModule } from '@nestjs/typeorm';
|
|
import { ClientEntity } from './entities';
|
|
|
|
@Module({
|
|
imports: [TypeOrmModule.forFeature([ClientEntity])],
|
|
exports: [TypeOrmModule],
|
|
})
|
|
export class ClientRepositoryModule {}
|