Source file make.ml

1
2
3
4
5
6
7
8
9
module Request (IO : S.IO) = struct
  include Cohttp.Request
  include (Make (IO) : module type of Make (IO) with type t := t)
  end

module Response (IO : S.IO) = struct
  include Cohttp.Response
  include (Make (IO) : module type of Make (IO) with type t := t)
  end