node-pt / src /modules /property /property.module.ts
Abdul Rehman
first commit
ae1ae66
raw
history blame
390 Bytes
import { Module } from '@nestjs/common';
import { PropertyController } from './property.controller';
import { PropertyService } from './property.service';
import { DatabaseModule } from '../database/database.module';
@Module({
imports: [DatabaseModule],
controllers: [PropertyController],
providers: [PropertyService],
exports: [PropertyService],
})
export class PropertyModule {}