Skip to content

Commit baf9493

Browse files
committed
feat: MockPaymentClient prod 추가
1 parent 4a32e06 commit baf9493

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

backend/src/main/java/com/back/api/payment/payment/client/MockPaymentClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import com.back.api.payment.payment.dto.response.PaymentConfirmResult;
88

99
@Component
10-
@Profile({"dev", "test", "perf"})
10+
@Profile({"dev", "test", "perf, prod"})
1111
public class MockPaymentClient implements PaymentClient {
1212

1313
@Override
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
package com.back.api.payment.payment.client;
22

3-
import org.springframework.stereotype.Component;
4-
53
import com.back.api.payment.payment.dto.request.PaymentConfirmCommand;
64
import com.back.api.payment.payment.dto.response.PaymentConfirmResult;
75

8-
@Component
6+
97
public interface PaymentClient {
108
PaymentConfirmResult confirm(PaymentConfirmCommand command);
119
}

0 commit comments

Comments
 (0)