node-pt / src /modules /property /property.module.ts
bardd's picture
first commit
7b850b7
raw
history blame contribute delete
402 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 {}