You can search for identifiers within the package.
in-package search v0.2.0
sihl-contract
Sihl_contract.Http
type meth =
| Get
| Post
| Put
| Delete
| Any
type handler = Rock.Request.t -> Rock.Response.t Lwt.t
type t = meth * string * handler
type router = {
scope : string;
routes : t list;
middlewares : Rock.Middleware.t list;
}
val name : string
module type Sig = sig ... end