mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-07-16 18:56:22 +00:00
20 lines
470 B
TypeScript
20 lines
470 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { TypeOrmModule } from '@nestjs/typeorm';
|
|
import { SpaceEntity, SubspaceEntity, TagEntity } from './entities';
|
|
import { InviteSpaceEntity } from './entities/invite-space.entity';
|
|
|
|
@Module({
|
|
providers: [],
|
|
exports: [],
|
|
controllers: [],
|
|
imports: [
|
|
TypeOrmModule.forFeature([
|
|
SpaceEntity,
|
|
SubspaceEntity,
|
|
TagEntity,
|
|
InviteSpaceEntity,
|
|
]),
|
|
],
|
|
})
|
|
export class SpaceRepositoryModule {}
|