/opt/mawid/apps/api/src/appointments
Edit: /opt/mawid/apps/api/src/appointments/appointments.module.ts (577B)
import { Module } from '@nestjs/common';
import { RemindersModule } from '../reminders/reminders.module';
import { WaitlistModule } from '../waitlist/waitlist.module';
import { WaCoreModule } from '../whatsapp/wa-core.module';
import { AppointmentsController } from './appointments.controller';
import { AppointmentsService } from './appointments.service';
@Module({
imports: [RemindersModule, WaitlistModule, WaCoreModule],
controllers: [AppointmentsController],
providers: [AppointmentsService],
exports: [AppointmentsService],
})
export class AppointmentsModule {}