Servant.API.Host
data Host (sym :: Symbol) Source #
Match against the given host.
This allows you to define APIs over multiple domains. For example:
type API = Host "api1.example" :> API1 :<|> Host "api2.example" :> API2