Skip to content

Commit

Permalink
docs: admincontrller java doc 간략히 작성
Browse files Browse the repository at this point in the history
  • Loading branch information
minsu11 committed Feb 23, 2024
1 parent df27b40 commit a8cfaea
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,14 @@
@Controller
@RequestMapping("/admin")
public class AdminController {
/**
* get 요청이 들어오면 관리자 페이지를 반환
*
* @return 관리자 페이지 파일 명
*/
@GetMapping
public String doAdmin() {

return "admin";

}
Expand Down

0 comments on commit a8cfaea

Please sign in to comment.