Spring Boot 3.5.14 결제 서비스 최소 구현 #2

Open
forge-bot wants to merge 4 commits from forge/BAIS-REVIEW-1783807356-attempt-2 into main
Showing only changes of commit 70c9801e82 - Show all commits

View file

@ -0,0 +1,7 @@
package com.klaro.bais;
public class PaymentService {
public boolean approve(long amount) {
return amount > 0;
}
}