package naboris

  1. Overview
  2. Docs
Simple http server

Install

dune-project
 Dependency

Authors

Maintainers

Sources

0.1.3.tar.gz
md5=f7d1c959627f93fdcf9fd0c346edb9c9
sha512=344a03d18170368a3fedcc595f6cc103fe47449a77a9923ab58a7d20d8d291edfda624d27bbfd8dc05d9af33a797064efcbeb52a4f9ea57fa862ebd39b97cfa1

doc/naboris/Naboris/Route/index.html

Module Naboris.Route

Module to extract routing data.

type t
val path : t -> string list

Get path (list(string)) of t.

val meth : t -> Method.t

Get http method (Method.t) of t.

val rawQuery : t -> string

Get query sring of t.

val query : t -> string list Query.QueryMap.t

Get query map Query.QueryMap.t(list(string)) ot t.

val create : string list -> Method.t -> string -> string list Query.QueryMap.t -> t

Intended for internal use.

Create route record t.