테스트 클래스 ㅋㅋ

This commit is contained in:
yjnoh 2024-08-16 13:30:28 +09:00
parent ed52b50052
commit 50acf4339b

View File

@ -18,4 +18,9 @@ public class TrestleController {
@PathVariable Integer roofMaterialId) {
return ResponseEntity.ok(trestleService.getTrestlesByRoofMaterialId(roofMaterialId));
}
@GetMapping("/jenkinstest")
public ResponseEntity<String> getTest() {
return ResponseEntity.ok("test Done!!!");
}
}