diff --git a/src/main/java/com/example/umc8th/test/controller/TestController.java b/src/main/java/com/example/umc8th/test/controller/TestController.java new file mode 100644 index 0000000..f703279 --- /dev/null +++ b/src/main/java/com/example/umc8th/test/controller/TestController.java @@ -0,0 +1,14 @@ +package com.example.umc8th.test.controller; + +import org.springframework.http.ResponseEntity; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.RestController; + +@RestController +public class TestController { + + @GetMapping("/test") + public ResponseEntity test() { + return ResponseEntity.ok("Hello World"); + } +}