Skip to content

Instantly share code, notes, and snippets.

@brendanhay
Created September 27, 2015 09:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brendanhay/6d576a8bef5ba139af01 to your computer and use it in GitHub Desktop.
Save brendanhay/6d576a8bef5ba139af01 to your computer and use it in GitHub Desktop.
λ: 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