Skip to content

Commit a435de3

Browse files
authored
added test endpoint (#24)
1 parent bedb8e8 commit a435de3

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package io.autoinvestor.ui.TestEndpoint;
2+
3+
import org.springframework.web.bind.annotation.GetMapping;
4+
import org.springframework.web.bind.annotation.RestController;
5+
6+
@RestController
7+
public class ControllerTest {
8+
9+
@GetMapping("/testUser")
10+
public String handler() {
11+
return "Congrats. You reached the users service.";
12+
}
13+
}

0 commit comments

Comments
 (0)