package functoria

  1. Overview
  2. Docs

Application builder. API for building libraries to link with config.ml

Builders

module type S = sig ... end

S is the signature that application builders have to provide.

module Make (P : S) : sig ... end

Configuration builder: stage 1