Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
Client calls to services.
module type CALL = sig ... end
The minimal interface for building a client. Cohttp_lwt.S.Client
is an instance of this signature, modulo some additional optional parameters that resto does not use. See OfCohttp
below to obtain an exact intance based on Cohttp_lwt.S.Client
.
module OfCohttp (Client : Cohttp_lwt.S.Client) : CALL