package bistro

  1. Overview
  2. Docs
type file_dump =
  1. | File_dump of {
    1. text : string;
    2. path : string;
    }
type t
val text : t -> string
val file_dumps : t -> file_dump list
val run : t -> (int * bool) Lwt.t