Skip to content

Commit

Permalink
refactor(HomeController): 시간 관리 페이지를 띄우는 GetMapping 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
developowl committed Nov 27, 2024
1 parent 4915b5b commit bdc553f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/main/java/roomescape/controller/HomeController.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,9 @@ public class HomeController {
public String home() {
return "home";
}

@GetMapping("/time")
public String time() {
return "time";
}
}

0 comments on commit bdc553f

Please sign in to comment.