Created
September 27, 2015 09:25
-
-
Save brendanhay/6d576a8bef5ba139af01 to your computer and use it in GitHub Desktop.
Revisions
-
brendanhay created this gist
Sep 27, 2015 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ λ: type ExampleResource = "foo" :> "bar" :> Capture "alt" Text :> QueryParam "quote" Bool :> Get '[JSON] Text λ: let p = Proxy :: Proxy ExampleResource λ: let u = BaseUrl Http λ: let u = BaseUrl Http "localhost" 8080 λ: let example = client p u λ: :t example example :: Text -> Maybe Bool -> EitherT ServantError IO Text