symphony-core 0.1.0

Domain model and shared types for Symphony orchestration engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Symphony core domain model.
//!
//! Defines the shared types used across all Symphony layers:
//! Issue, WorkflowDefinition, ServiceConfig, Workspace, RunAttempt,
//! LiveSession, RetryEntry, and OrchestratorState.

pub mod issue;
pub mod session;
pub mod state;
pub mod workspace;

pub use issue::{BlockerRef, Issue};
pub use session::{LiveSession, RunAttempt, RunAttemptStatus, RetryEntry};
pub use state::OrchestratorState;
pub use workspace::Workspace;