package cohttp

  1. Overview
  2. Docs
module type BASE = sig ... end

The Client module is a collection of convenience functions for constructing and processing requests.

module type S = sig ... end
module Make (Base : BASE) (IO : S.IO with type 'a t = 'a Base.io) : sig ... end