예제 #1
0
        public async Task <IActionResult> Get(int id)
        {
            var post = await _postClient.GetPost(id);

            return(Ok(post));
        }