blob: fbe70da2db5401319125db984ae2f51c20f64009 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
type error =
| Invalid_pill of string
| Unsupported of string
val boot_ivory : State.t -> string -> (unit, error) result
val boot_solid : ?limit:int -> ?apply:(State.t -> Noun.noun -> Noun.noun) -> State.t -> string -> (unit, error) result
val boot_solid_lifecycle : State.t -> string -> (unit, error) result
(* Utility functions *)
val cue_file : ?verbose:bool -> string -> Noun.noun
val parse_solid : Noun.noun -> (Noun.noun * Noun.noun * Noun.noun, error) result
val run_lifecycle : Noun.noun -> Noun.noun
|