Пример #1
0
 public async Task <IActionResult> GetShortestPath(string followerUserId, string followingUserId)
 {
     return(Ok(await _followerService.GetShortestPath(followerUserId, followingUserId)));
 }