Fundamental_Analysis/services/common-contracts/src/lib.rs
Lv, Qi ca1eddd244 Refactor Orchestrator to DAG-based scheduler with Git Context merging
- Implemented `DagScheduler` in `workflow-orchestrator` to manage task dependencies and commit history.
- Added `vgcs.merge_commits` in `workflow-context` for smart 3-way merge of parallel task branches.
- Introduced generic `WorkflowTaskCommand` and `WorkflowTaskEvent` in `common-contracts`.
- Adapted `tushare-provider-service` with `generic_worker` to support Git-based context read/write.
- Updated NATS subjects to support wildcard routing for generic workflow commands.
2025-11-27 02:42:25 +08:00

16 lines
342 B
Rust

pub mod dtos;
#[cfg(feature = "persistence")]
pub mod models;
pub mod observability;
pub mod messages;
pub mod config_models;
pub mod subjects;
pub mod provider;
pub mod registry;
pub mod lifecycle;
pub mod symbol_utils;
pub mod persistence_client;
pub mod abstraction;
pub mod workflow_harness; // Export the harness
pub mod workflow_types;