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

Merged
forge-bot merged 4 commits from forge/BAIS-REVIEW-1783808744-attempt-1 into main 2026-07-11 22:28:00 +00:00
Showing only changes of commit 069912b283 - Show all commits

View file

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