Source file contract_http.ml

1
2
3
4
5
6
7
8
9
10
11
12
exception Exception of string

let name = "http"

module type Sig = sig
  val register
    :  ?middlewares:Rock.Middleware.t list
    -> Web.router
    -> Core_container.Service.t

  include Core_container.Service.Sig
end