obzenflow_core 0.2.4

Core domain layer for ObzenFlow - pure abstractions with minimal dependencies
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: MIT OR Apache-2.0
// SPDX-FileCopyrightText: 2025-2026 ObzenFlow Contributors
// https://obzenflow.dev

//! Authoring and execution context that is not a stored record component.

pub mod middleware_execution_scope;
pub mod processing_context;
pub mod stage_type;

pub use middleware_execution_scope::MiddlewareExecutionScope;
pub use processing_context::ProcessingContext;
pub use stage_type::{SimpleStageType, StageType};