Module Server.Make

Parameters

module Remote : sig ... end

Signature

module IO = Cohttp_lwt_unix.IO
type repo = S.repo
type server = Cohttp_lwt_unix.Server.t
type response_action = [
  1. | `Expert of Cohttp.Response.t * (IO.ic -> IO.oc -> unit Lwt.t)
  2. | `Response of Cohttp.Response.t * Cohttp_lwt.Body.t
]
val schema : repo -> unit Irmin_graphql.Server.Schema.schema
val execute_request : unit Irmin_graphql.Server.Schema.schema -> Cohttp_lwt.Request.t -> Cohttp_lwt.Body.t -> response_action Lwt.t
val v : repo -> server