Created
May 11, 2017 10:05
-
-
Save chriswebb09/3d4d7e8102facf8309257c3499e25838 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
import UIKit | |
import PlaygroundSupport | |
PlaygroundPage.current.needsIndefiniteExecution = true | |
class APIClient { | |
typealias JSON = [String: Any] | |
// search functionality stuff | |
} | |
APIClient.search(for: "new", page: 1) { movieData, error in | |
print(movieData) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment