Skip to content

Commit

Permalink
refactor: rename to .use-case file
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbertHernandez committed Jun 26, 2024
1 parent 3d6f716 commit dfcf96a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Body, Controller, Post } from "@nestjs/common";

import { CreatePaymentUseCase } from "@/contexts/payments/application/create-payment-use-case/create-payment-use-case";
import { CreatePaymentUseCase } from "@/contexts/payments/application/create-payment-use-case/create-payment.use-case";
import { PrimitivePayment } from "@/contexts/payments/domain/payment.entity";
import { V1_PAYMENTS } from "@/contexts/payments/infrastructure/http-api/route.constants";
import { CreatePaymentHttpDto } from "@/contexts/payments/infrastructure/http-api/v1/create-payment/create-payment.http-dto";
Expand Down
2 changes: 1 addition & 1 deletion src/contexts/payments/infrastructure/payment.module.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Module } from "@nestjs/common";

import { CreatePaymentUseCase } from "@/contexts/payments/application/create-payment-use-case/create-payment-use-case";
import { CreatePaymentUseCase } from "@/contexts/payments/application/create-payment-use-case/create-payment.use-case";
import { FindPaymentByIdUseCase } from "@/contexts/payments/application/find-payment-by-id-use-case/find-payment-by-id.use-case";
import { PaymentRepository } from "@/contexts/payments/domain/payment.repository";
import { CreatePaymentController } from "@/contexts/payments/infrastructure/http-api/v1/create-payment/create-payment.controller";
Expand Down

0 comments on commit dfcf96a

Please sign in to comment.