Graphql_internal.Make
module Ws : sig ... end
module Websocket_transport : sig ... end
type response_action = [
| `Expert of Cohttp.Response.t * ( Io.ic -> Io.oc -> unit Io.t ) |
| `Response of Cohttp.Response.t * Body.t |
]
type 'conn callback =
'conn ->
Cohttp.Request.t ->
Body.t ->
response_action Io.t
val respond_string :
status:Cohttp__.Code.status_code ->
body:string ->
unit ->
[> `Response of Cohttp.Response.t * Body.t ] Io.t
val static_file_response :
string ->
[> `Response of Cohttp.Response.t * Body.t ] Io.t
val make_callback :
( Cohttp.Request.t -> 'ctx ) ->
'ctx Schema.schema ->
'conn callback