package letsencrypt-mirage

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module LE.ClientSource

Sourcetype 'a t = 'a Lwt.t
Sourcetype error = Mimic.error
Sourcetype meth = [
  1. | `HEAD
  2. | `GET
  3. | `POST
]
Sourcetype response = {
  1. headers : (string * string) list;
  2. status : int;
}
Sourceval request : ?ctx:ctx -> ?meth:meth -> ?headers:(string * string) list -> ?body:string -> string -> (response * string, error) result t