Skip to content

Commit

Permalink
test: CI/CD 테스트를 위한 컨트롤러 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
kitaee committed Jan 6, 2025
1 parent ee93406 commit 8303119
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/main/java/TiCatch/backend/domain/TestController.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package TiCatch.backend.domain;

import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class TestController {

@GetMapping("/")
public String test() {
return "Hello TiCatch";
}
}

0 comments on commit 8303119

Please sign in to comment.