securegit 0.8.5

Zero-trust git replacement with 12 built-in security scanners, LLM redteam bridge, universal undo, durable backups, and a 50-tool MCP server
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! GraphRAG Integration Module
//!
//! Provides code indexing integration with the GraphRAG service.
//! Called after clone, fetch, pull, and push operations to keep
//! the code knowledge graph up to date.

pub mod client;
pub mod config;

pub use client::GraphRagClient;
pub use config::GraphRagConfig;