Commit 418bb0fa authored by Serdar TURKEL's avatar Serdar TURKEL

Merge branch 'development' into 'master'

cm-2

See merge request !4
parents 7c97f5a3 de397a35
...@@ -9,6 +9,10 @@ import java.net.http.HttpResponse; ...@@ -9,6 +9,10 @@ import java.net.http.HttpResponse;
@RestController @RestController
public class TestController { public class TestController {
public void testEndPoint(){
System.out.println("Test 1");
}
@GetMapping("/restapi/test") @GetMapping("/restapi/test")
public ResponseEntity<HttpResponse<HttpStatus>> test() { public ResponseEntity<HttpResponse<HttpStatus>> test() {
return new ResponseEntity<HttpResponse<HttpStatus>>(HttpStatus.OK); return new ResponseEntity<HttpResponse<HttpStatus>>(HttpStatus.OK);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment