package obuilder

  1. Overview
  2. Docs
type id = string
val sexp_of_id : id -> Sexplib0.Sexp.t
type tag = [
  1. | `Heading
    (*

    Introduces a new build step

    *)
  2. | `Note
    (*

    Informational output from OBuilder

    *)
  3. | `Output
    (*

    Raw output from the build command

    *)
]
type logger = tag -> string -> unit
module type STORE = sig ... end
module type SANDBOX = sig ... end
module type BUILDER = sig ... end
module type FETCHER = sig ... end