Files
q3alique acc1b4f3e7 Initial release of codeflow
Static taint-analysis and visualization tool for source-code security review.
Supports deep analysis for Python, JavaScript/TypeScript, Java, Go, and C#,
with structural support for all other languages via the generic extractor.

Outputs: interactive HTML report, LLM-ready Markdown review document,
and optional Burp Suite JSON export. Self-bootstrapping launcher (run.py)
requires no virtual environment.
2026-06-08 00:55:14 +02:00

12 lines
378 B
Python

from codeflow.models.node import Node, NodeType, make_node_id, make_module_node_id, new_cluster_id
from codeflow.models.edge import Edge, EdgeType
from codeflow.models.graph import CodeGraph
from codeflow.models.flow import Flow
__all__ = [
"Node", "NodeType", "make_node_id", "make_module_node_id", "new_cluster_id",
"Edge", "EdgeType",
"CodeGraph",
"Flow",
]