import { Module } from '@nestjs/common';
import { PredicateService } from './predicate.service';
import { PredicateController } from './predicate.controller';
import { Predicate } from './entities/predicate.entity';
import { TypeOrmModule } from '@nestjs/typeorm';
@Module({
imports: [TypeOrmModule.forFeature([Predicate])],
controllers: [PredicateController],
providers: [PredicateService],
})
export class PredicateModule {}