package cohttp-lwt

  1. Overview
  2. Docs

Source file make.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
module Request (IO : S.IO) = struct
  include Cohttp.Request

  include (
    Private.Make (IO) : module type of Private.Make (IO) with type t := t)
  end

module Response (IO : S.IO) = struct
  include Cohttp.Response

  include (
    Private.Make (IO) : module type of Private.Make (IO) with type t := t)
  end
OCaml

Innovation. Community. Security.