batuta/oracle/knowledge_graph/mod.rs
1//! Knowledge Graph for Sovereign AI Stack
2//!
3//! Provides component registry, capability indexing, and relationship mapping
4//! between all stack components.
5
6mod components;
7mod domain_mappings;
8mod integrations;
9mod types;
10
11#[cfg(test)]
12mod tests;
13
14pub use types::KnowledgeGraph;