Documentation
¶
Overview ¶
Package deps provides protocol dependency analysis and impact assessment.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func FormatTree ¶
FormatTree formats dependency tree as ASCII art.
Types ¶
type DepNode ¶
type DepNode struct {
Name string `json:"name"`
DependsOn []string `json:"depends_on"`
UsedBy []string `json:"used_by"`
}
DepNode represents a node in the dependency graph.
type Graph ¶
Graph represents a protocol dependency graph.
func BuildGraph ¶
BuildGraph builds a dependency graph from the protocol library.
func (*Graph) DetectCycles ¶
DetectCycles detects circular dependencies.
Click to show internal directories.
Click to hide internal directories.