You can search for identifiers within the package.
in-package search v0.2.0
yurt
Yurt
module Route : sig ... end
Routes are used to build URLs with types variables
Route
module Body : sig ... end
The Body module contains methods needed for creating, reading and modifying request data
Body
module Request = Cohttp_lwt_unix.Request
module Response = Cohttp.Response
module Header = Cohttp.Header
type response = (Response.t * Body.t) Lwt.t
Response type
and endpoint = Request.t -> Route.params -> Body.t -> response
HTTP handler
module Query : sig ... end
Query contains methods for reading query string parameters
Query
module Server : sig ... end
Server contains the methods needed to build a Yurt server
Server
module Client : sig ... end
Client contains functions for sending HTTP requests
Client
module Form : sig ... end
module Util : sig ... end