import { Global, Module } from '@nestjs/common'; import { PaymentSchema } from './payment.schema'; @Global() @Module({ providers: [PaymentSchema], exports: [PaymentSchema], }) export class PaymentModule {}