File size: 402 Bytes
7b850b7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
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 {}
|