Skip to content

Instantly share code, notes, and snippets.

@onmyway133
Created July 4, 2018 08:51
Show Gist options
  • Save onmyway133/e381f351bc75744b7bebc193f934f26c to your computer and use it in GitHub Desktop.
Save onmyway133/e381f351bc75744b7bebc193f934f26c to your computer and use it in GitHub Desktop.
class ViewModel {
func getFacebookFriends(completion: [User] -> Void) {
let client = APIClient()
client.getFacebookFriends(for: user) { friends in
DispatchQueue.main.async {
completion(friends)
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment