Last active
June 6, 2020 13:25
-
-
Save cipolleschi/2eafdc4db67edcd65ea4a6aef8c9d66d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| self.downloadUser() { user in | |
| self.downloadFavouriteMovies(for: user) { movies in | |
| self.downloadRatings(for: movies) { ratings in | |
| self.downloadFriends(for: users) { friends in | |
| self.downloadMovies(for: friends] { friendMovies in | |
| self.presentProfile( | |
| for: user, | |
| movies: movies, | |
| ratings: ratings, | |
| friends: friends, | |
| movies: movies | |
| ) | |
| } | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment