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