Skip to main content

scientific_workflow/
execution.rs

1//! Execution scope management for scientific workflows.
2//!
3//! `ExecutionScope` centralizes filesystem scope creation for one project
4//! execution and all task recordings.
5
6mod error;
7mod scope;
8
9pub use error::ExecutionScopeError;
10pub use scope::ExecutionScope;