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
val container : t -> [ `Docker_container of Bistro_internals.Workflow.Docker_image.t | `Singularity_container of Bistro_internals.Workflow.container_image ] option