api-builder-0.17.0.0: Library for easily building REST API wrappers in Haskell

Safe HaskellNone
LanguageHaskell2010

Network.API.Builder.Builder

Synopsis

Documentation

data Builder Source #

Builder type for the API. Keeps track of the API's name and base URL, and how to modify Routes and Requests before they're run.

Instances
Show Builder Source # 
Instance details

Defined in Network.API.Builder.Builder

basicBuilder Source #

Arguments

:: Text

name

-> Text

base url

-> Builder

a simple Builder

Makes a basic builder, i.e. one that simply has a name and base URL and doesn't fiddle with Routes / Requests.