Created
September 29, 2018 22:53
-
-
Save regularberry/1f2a50441a33ca6cc8699f430f8b0ede 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
| let url = URL(string: "http://0.0.0.0")! | |
| let data = "Secret Message".data(using: .utf8) | |
| let request = URLRequest(url: url) | |
| let task = URLSession.shared.uploadTask(with: request, from: data) { responseData, response, error in | |
| print("We're done here") | |
| } | |
| task.resume() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment