Created
September 27, 2015 09:25
-
-
Save brendanhay/6d576a8bef5ba139af01 to your computer and use it in GitHub Desktop.
This file contains 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
λ: 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment