Skip to content

Commit 8cef0cb

Browse files
committed
[Fix] deploy 테스트
1 parent b2aabd9 commit 8cef0cb

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
package kr.hhplus.be.server.presentation.deploytest;
2+
3+
import org.springframework.validation.annotation.Validated;
4+
import org.springframework.web.bind.annotation.GetMapping;
5+
import org.springframework.web.bind.annotation.RequestMapping;
6+
import org.springframework.web.bind.annotation.RestController;
7+
8+
import lombok.RequiredArgsConstructor;
9+
10+
@RestController
11+
@RequestMapping("/api/v1/deploy")
12+
@RequiredArgsConstructor
13+
@Validated
14+
public class DeployTestController {
15+
16+
@GetMapping("/")
17+
public String deployTest() {
18+
return "Successful deploy";
19+
}
20+
}

0 commit comments

Comments
 (0)