import { Module } from '@nestjs/common'; import { KeywordsModule } from '../keywords/keywords.module'; import { MerchantsModule } from '../merchants/merchants.module'; import { DemoController } from './demo.controller'; import { MatchService } from './match.service'; import { ServingController } from './serving.controller'; import { ServingService } from './serving.service'; @Module({ imports: [MerchantsModule, KeywordsModule], controllers: [ServingController, DemoController], providers: [ServingService, MatchService], }) export class ServingModule {}