feat: update config

This commit is contained in:
Tim
2025-06-30 17:48:11 +08:00
parent b0c876417d
commit aa6d32e7dd
4 changed files with 18 additions and 1 deletions

View File

@@ -5,6 +5,10 @@ import org.springframework.web.bind.annotation.RestController;
@RestController
public class HelloController {
/**
* curl http://localhost:8080/api/hello \
* -H "Authorization: Bearer <jwt-token>"
*/
@GetMapping("/api/hello")
public String hello() {
return "Hello, Authenticated User";