package cohttp-lwt

  1. Overview
  2. Docs
module type IO = S.IO
module Request = Cohttp.Request
module Response = Cohttp.Response
module Make_client (IO : S.IO) (Net : S.Net with module IO = IO) : sig ... end
module Make_server (IO : S.IO) : sig ... end
module S : sig ... end

Portable Lwt implementation of HTTP client and server, without depending on a particular I/O implementation. The various Make functors must be instantiated by an implementation that provides a concrete IO monad.

module Body : sig ... end