From 4f078f35ae337dbcc5a5595868f6c7628217f78c Mon Sep 17 00:00:00 2001 From: forge-bot Date: Thu, 16 Jul 2026 02:46:56 +0000 Subject: [PATCH] =?UTF-8?q?=EB=B6=84=EC=84=9D=20=EA=B2=B0=EA=B3=BC?= =?UTF-8?q?=EB=A5=BC=20=EA=B8=B0=EB=B0=98=EC=9C=BC=EB=A1=9C=20Spring=20?= =?UTF-8?q?=EC=A0=84=ED=99=98=20=EC=B2=B4=ED=81=AC=EB=A6=AC=EC=8A=A4?= =?UTF-8?q?=ED=8A=B8=20=EC=9E=91=EC=84=B1=20(E2E-MINIMAX-DEV-001)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../e2eminimax/service/MinimaxService.java | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/main/java/com/example/e2eminimax/service/MinimaxService.java diff --git a/src/main/java/com/example/e2eminimax/service/MinimaxService.java b/src/main/java/com/example/e2eminimax/service/MinimaxService.java new file mode 100644 index 0000000..0167221 --- /dev/null +++ b/src/main/java/com/example/e2eminimax/service/MinimaxService.java @@ -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(); + } +}