Skip to content

Instantly share code, notes, and snippets.

@ARamy23
Created June 13, 2018 22:01
Show Gist options
  • Save ARamy23/c93fedcedb731d789616d93cdd666e63 to your computer and use it in GitHub Desktop.
Save ARamy23/c93fedcedb731d789616d93cdd666e63 to your computer and use it in GitHub Desktop.
UserRouter.login(email: "ali@ali.gmail.com", password: "test12345").send(SwiftCairoUser.self) {[weak self] (response) in
switch response {
case .failure(let error):
// TODO: - Handle error as you want, printing isn't handling.
print(error)
case .success(let value):
self?.textView.text = value.apiToken
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment