mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-08-26 04:39:38 +00:00
feat: add BookableSpace entity, DTO, repository, and integrate with Space entity
This commit is contained in:
11
libs/common/src/modules/booking/booking.repository.module.ts
Normal file
11
libs/common/src/modules/booking/booking.repository.module.ts
Normal file
@ -0,0 +1,11 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { TypeOrmModule } from '@nestjs/typeorm';
|
||||
import { BookableSpaceEntity } from './entities/bookable-space.entity';
|
||||
|
||||
@Module({
|
||||
providers: [],
|
||||
exports: [],
|
||||
controllers: [],
|
||||
imports: [TypeOrmModule.forFeature([BookableSpaceEntity])],
|
||||
})
|
||||
export class BookableRepositoryModule {}
|
Reference in New Issue
Block a user