rust_logic_graph/lib.rs
1
2pub mod core;
3pub mod node;
4pub mod rule;
5pub mod orchestrator;
6pub mod io;
7pub mod integrations;
8pub mod streaming;
9pub mod parallel;
10
11// Re-export main types
12pub use core::{Graph, GraphDef, Edge, Context, Executor};
13pub use node::{Node, NodeType, RuleNode, DBNode, AINode};
14pub use rule::{Rule, RuleResult, RuleError, RuleEngine, GrlRule};
15pub use orchestrator::Orchestrator;
16pub use io::GraphIO;