Documentation
¶
Overview ¶
Package model defines core data structures for repoguide.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Dependency ¶
Dependency represents an edge in the dependency graph: Source references symbols defined in Target.
type RepoMap ¶
type RepoMap struct {
RepoName string
Root string
Files []FileInfo
Dependencies []Dependency
}
RepoMap is the complete analyzed repository map, ready for serialization.
type SymbolKind ¶
type SymbolKind string
SymbolKind indicates the syntactic kind of a symbol.
const ( Class SymbolKind = "class" Function SymbolKind = "function" Method SymbolKind = "method" Module SymbolKind = "module" )
Click to show internal directories.
Click to hide internal directories.