Skip to content

Instantly share code, notes, and snippets.

@jimmya
Created October 19, 2019 16:22
Show Gist options
  • Save jimmya/8b54ccd74090f616625cd22db55a01a3 to your computer and use it in GitHub Desktop.
Save jimmya/8b54ccd74090f616625cd22db55a01a3 to your computer and use it in GitHub Desktop.
Simple Swift package usage example
import UIKit
import Alamofire
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
Alamofire.request("https://httpbin.org/get").response { response in
debugPrint(response)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment