분석 결과를 기반으로 Spring 전환 체크리스트 작성 (E2E-MINIMAX-DEV-001)

This commit is contained in:
forge-bot 2026-07-16 02:46:56 +00:00
parent 4f70edcbc7
commit 4f078f35ae

View file

@ -0,0 +1,18 @@
package com.example.e2eminimax.service;
import org.springframework.stereotype.Service;
@Service
public class MinimaxService {
public String processRequest(String input) {
if (input == null || input.isBlank()) {
throw new IllegalArgumentException("Input cannot be null or blank");
}
return "Processed: " + input;
}
public boolean validateInput(String input) {
return input != null && !input.isBlank();
}
}