Skip to content

Commit

Permalink
[FEAT] : 테스트용 hello 컨트롤러 추가
Browse files Browse the repository at this point in the history
/hello 로 접속 시 "hello" 리턴
  • Loading branch information
Dae-Hwa committed Apr 20, 2021
1 parent 7b842e6 commit 9ebace6
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package com.codesquad.sidedish.temp;

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

@RestController
public class HelloController {
@GetMapping("/hello")
public String hello() {
return "hello";
}
}

0 comments on commit 9ebace6

Please sign in to comment.