Skip to content

Instantly share code, notes, and snippets.

@allgamesallfree
Last active September 24, 2017 01:20
Show Gist options
  • Save allgamesallfree/4f257710f512dececdb7428ab942ce2a to your computer and use it in GitHub Desktop.
Save allgamesallfree/4f257710f512dececdb7428ab942ce2a to your computer and use it in GitHub Desktop.
CryptoTracker_InitialAPI
private func makeValueGETRequest(url: URL, completion: @escaping (_ value: NSNumber?) -> Void) {
let request = URLSession.shared.dataTask(with: url) { (data, response, error) in
// TODO: Get the data and return it
}
request.resume()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment