mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-07-15 18:27:05 +00:00
27 lines
850 B
TypeScript
27 lines
850 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { TypeOrmModule } from '@nestjs/typeorm';
|
|
|
|
import { InviteSpaceEntity } from './entities/invite-space.entity';
|
|
import { SpaceProductAllocationEntity } from './entities/space-product-allocation.entity';
|
|
import { SpaceEntity } from './entities/space.entity';
|
|
import { SubspaceProductAllocationEntity } from './entities/subspace/subspace-product-allocation.entity';
|
|
import { SubspaceEntity } from './entities/subspace/subspace.entity';
|
|
import { TagEntity } from './entities/tag.entity';
|
|
|
|
@Module({
|
|
providers: [],
|
|
exports: [],
|
|
controllers: [],
|
|
imports: [
|
|
TypeOrmModule.forFeature([
|
|
SpaceEntity,
|
|
SubspaceEntity,
|
|
TagEntity,
|
|
InviteSpaceEntity,
|
|
SpaceProductAllocationEntity,
|
|
SubspaceProductAllocationEntity,
|
|
]),
|
|
],
|
|
})
|
|
export class SpaceRepositoryModule {}
|