public async Task <IActionResult> GetPostComments(Guid postId)
        {
            var comments = await _commentAppService.GetPostComments(postId);

            return(Ok(comments));
        }