import { Module } from '@nestjs/common'; import { InterimAccessService } from './interim-access.service'; import { PondsController } from './ponds.controller'; import { PondsService } from './ponds.service'; @Module({ controllers: [PondsController], providers: [PondsService, InterimAccessService], exports: [PondsService, InterimAccessService], }) export class PondsModule {}