jellyflow_core/core/validate/mod.rs
1use crate::core::Graph;
2
3mod error;
4mod report;
5mod storage;
6mod structural;
7
8pub use error::GraphValidationError;
9pub use report::GraphValidationReport;
10pub use storage::validate_graph_storage;
11pub use structural::validate_graph_structural;
12
13pub fn validate_graph(graph: &Graph) -> GraphValidationReport {
14 validate_graph_structural(graph)
15}