Some checks failed
CI / Check / Test (push) Failing after 1m24s
Hex arch + DDD, tree-sitter parsing, Mermaid/ASCII output. Supports Rust + Python. 92 tests. CI, diff, --check for staleness detection.
6 lines
160 B
Rust
6 lines
160 B
Rust
use crate::{CodeGraph, DomainError, RenderOutput};
|
|
|
|
pub trait DiagramRenderer {
|
|
fn render(&self, graph: &CodeGraph) -> Result<RenderOutput, DomainError>;
|
|
}
|