import { Module } from '@nestjs/common'; import { PromotionController } from './promotions.controller'; import { PromotionService } from './promotions.service'; import { HttpModule } from '@nestjs/axios'; @Module({ imports: [HttpModule], providers: [PromotionService], controllers: [PromotionController], }) export class PromotionModule { }