Restructure Osiris: separate core, client, and server crates to avoid circular dependencies

This commit is contained in:
Timur Gordon
2025-11-04 13:08:43 +01:00
parent ae846ea734
commit 5d82959457
86 changed files with 601 additions and 62 deletions

View File

@@ -0,0 +1,10 @@
/// Flow Module
///
/// Provides workflow/flow management with templates and instances.
pub mod template;
pub mod instance;
pub mod rhai;
pub use template::{FlowTemplate, FlowStep};
pub use instance::{FlowInstance, FlowStatus, StepStatus, StepInstance};