Skip to content

Commit

Permalink
테스트 컨트롤러 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
PgmJun committed Apr 1, 2023
1 parent c729955 commit c037aba
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package sopt.org.firstSeminar.controller;

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

@RestController
public class TestController {

@GetMapping("/test")
public String test() {
return "Welcome Spring";
}
}

0 comments on commit c037aba

Please sign in to comment.