scientific-workflow 0.7.0

Configuration-driven scientific tasks, typed state, and durable recordings
Documentation
1
2
3
4
5
6
7
8
9
10
//! Execution scope management for scientific workflows.
//!
//! `ExecutionScope` centralizes filesystem scope creation for one project
//! execution and all task recordings.

mod error;
mod scope;

pub use error::ExecutionScopeError;
pub use scope::ExecutionScope;