import { Module } from '@nestjs/common'; import { TypeOrmModule } from '@nestjs/typeorm'; import { SpaceModelEntity, SubspaceModelEntity } from './entities'; @Module({ providers: [], exports: [], controllers: [], imports: [TypeOrmModule.forFeature([SpaceModelEntity, SubspaceModelEntity])], }) export class SpaceModelRepositoryModule {}