import { Module } from '@nestjs/common';

import { PrismaModule } from '../../prisma/prisma.module';
import { PlenaryController } from './plenary.controller';
import { PlenaryService } from './plenary.service';

@Module({
  imports: [PrismaModule],
  controllers: [PlenaryController],
  providers: [PlenaryService],
  exports: [PlenaryService],
})
export class PlenaryModule {}
