Skip to content

Instantly share code, notes, and snippets.

@Kdan
Last active February 18, 2019 22:07
Show Gist options
  • Save Kdan/49a91d2fd9c343c3b0c9a53b4d90d8c9 to your computer and use it in GitHub Desktop.
Save Kdan/49a91d2fd9c343c3b0c9a53b4d90d8c9 to your computer and use it in GitHub Desktop.
/// Retrieve the pets of the Person.
func getPets(completion: ([Pet]) -> Void) throws {
// Networking request omitted for simplicity.
if let data = responseData {
completion(try JSONDecoder().decode(family: PetFamily.self, from: data))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment