feat: delete curl

This commit is contained in:
Tim
2025-07-01 10:22:43 +08:00
parent e8f4fd8175
commit 664d7de105
6 changed files with 0 additions and 76 deletions

View File

@@ -12,21 +12,6 @@ import java.time.LocalDateTime;
import java.util.List;
import java.util.stream.Collectors;
/*
curl -X POST http://localhost:8080/api/posts/1/comments \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <token>" \
-d '{ "content": "Nice post" }'
curl -X POST http://localhost:8080/api/comments/1/replies \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <token>" \
-d '{ "content": "Thanks!" }'
curl http://localhost:8080/api/posts/1/comments \
-H "Authorization: Bearer <token>"
*/
@RestController
@RequestMapping("/api")
@RequiredArgsConstructor