1. 댓글 등록

POST <http://localhost:8080/api/comments>
{
  "feedId": 1,
  "body": "저도 같은 문제 겪었어요"
}

image.png

2. 댓글 조회

GET <http://localhost:8080/api/comments/{feedId}>
[
    {
        "id": 1,
        "body": "저도 같은 문제 겪었어요",
        "userId": 4393742885,
        "createdAt": "2025-08-17T18:58:10.959169"
    }
]

image.png