SchemaType enum with inline syntax parsing: "string", "string?", "list<number>", "map<string>", nested generics. WorkflowSchema validates inputs/outputs against type declarations at both compile time and runtime. 39 tests for parse and validate paths.
21 lines
632 B
Rust
21 lines
632 B
Rust
pub mod lifecycle;
|
|
pub mod lock;
|
|
pub mod middleware;
|
|
pub mod persistence;
|
|
pub mod queue;
|
|
pub mod registry;
|
|
pub mod search;
|
|
pub mod step;
|
|
|
|
pub use lifecycle::LifecyclePublisher;
|
|
pub use lock::DistributedLockProvider;
|
|
pub use middleware::{StepMiddleware, WorkflowMiddleware};
|
|
pub use persistence::{
|
|
EventRepository, PersistenceProvider, ScheduledCommandRepository, SubscriptionRepository,
|
|
WorkflowRepository,
|
|
};
|
|
pub use queue::QueueProvider;
|
|
pub use registry::WorkflowRegistry;
|
|
pub use search::{Page, SearchFilter, SearchIndex, WorkflowSearchResult};
|
|
pub use step::{HostContext, StepBody, StepExecutionContext, WorkflowData};
|