mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-08-25 16:19:38 +00:00

* fix: commission device API * task: add create booking API * add get All api for dashboard & mobile * add Find APIs for bookings * implement sending email updates on update bookable space * move email interfaces to separate files
13 lines
403 B
TypeScript
13 lines
403 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { TypeOrmModule } from '@nestjs/typeorm';
|
|
import { BookableSpaceEntity } from './entities/bookable-space.entity';
|
|
import { BookingEntity } from './entities/booking.entity';
|
|
|
|
@Module({
|
|
providers: [],
|
|
exports: [],
|
|
controllers: [],
|
|
imports: [TypeOrmModule.forFeature([BookableSpaceEntity, BookingEntity])],
|
|
})
|
|
export class BookingRepositoryModule {}
|