wrkflw-executor 0.7.3

Workflow execution engine for wrkflw
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// executor crate

#![allow(unused_variables, unused_assignments)]

pub mod dependency;
pub mod docker;
pub mod engine;
pub mod environment;
pub mod podman;
pub mod substitution;

// Re-export public items
pub use docker::cleanup_resources;
pub use engine::{
    execute_workflow, ExecutionConfig, JobResult, JobStatus, RuntimeType, StepResult, StepStatus,
};