import { Module } from '@nestjs/common'; import { AuthModule } from '../auth/auth.module'; import { AuthService } from '../auth/auth.service'; import { DrizzleModule } from '../drizzle/drizzle.module'; import { FileService } from '../file/file.service'; import { GeoService } from '../geo/geo.service'; import { MailModule } from '../mail/mail.module'; import { MailService } from '../mail/mail.service'; import { UserModule } from '../user/user.module'; import { UserService } from '../user/user.service'; import { PaymentController } from './payment.controller'; import { PaymentService } from './payment.service'; @Module({ imports: [DrizzleModule, UserModule, MailModule, AuthModule], providers: [PaymentService, UserService, MailService, FileService, GeoService, AuthService], controllers: [PaymentController], }) export class PaymentModule {}