Minimalistic Swift HTTP request agent for iOS and OS X.
This is a tiny framework that gives you nice a API for crafting an HTTP request.
Agent.get("http://google.com", { (agent: Agent, response: NSURLResponse) -> () in
println(response)
})
let req = Agent.get("http://apple.com")
req.end({ (agent: Agent, response: NSURLResponse) -> () in
println(response)
})