import { Module } from '@nestjs/common'; import { PrismaModule } from '../prisma/prisma.module'; import { FlyerSelectionController } from './flyer-selection.controller'; import { FlyerSelectionService } from './flyer-selection.service'; @Module({ imports: [PrismaModule], controllers: [FlyerSelectionController], providers: [FlyerSelectionService], }) export class FlyerSelectionModule {}