sz-rust-workflow 1.4.0

SZ-Rust 工作流引擎 — 状态机/审批流/插件节点编排,含设计器 API 与可观测层
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2024-2026 SZ-Rust Team
//
//! 事件总线/指标/审计

pub mod audit;
pub mod event_bus;
pub mod metrics;

pub use audit::{AuditAction, AuditLogger};
pub use event_bus::{InMemoryEventBus, NoopEventBus, WorkflowEvent, WorkflowEventBus};
pub use metrics::WorkflowMetrics;