| import { Module } from '@nestjs/common'; | |
| import { PropertyController } from './property.controller'; | |
| import { PropertyService } from './property.service'; | |
| import { DatabaseModule } from '../database/database.module'; | |
| ({ | |
| imports: [DatabaseModule], | |
| controllers: [PropertyController], | |
| providers: [PropertyService], | |
| exports: [PropertyService], | |
| }) | |
| export class PropertyModule {} | |