Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type APIResponse ¶
type APIResponse struct {
Status string `json:"status"`
JobID string `json:"jobId"`
Error json.RawMessage `json:"error"`
Result *GraphResult `json:"result"`
}
type Artifact ¶
type Artifact struct {
Type string `json:"type"`
Name string `json:"name"`
Graph *Graph `json:"graph"`
Stats json.RawMessage `json:"stats"`
}
type DomainSummary ¶
type DomainSummary struct {
Name string `json:"name"`
Subdomains []SubdomainSummary `json:"subdomains"`
Files []string `json:"files"`
}
type Graph ¶
type Graph struct {
Nodes []Node `json:"nodes"`
Relationships []Relationship `json:"relationships"`
}
type GraphResult ¶
type GraphResult struct {
GeneratedAt string `json:"generatedAt"`
Message string `json:"message"`
Stats GraphStats `json:"stats"`
Graph Graph `json:"graph"`
Metadata json.RawMessage `json:"metadata"`
Domains []DomainSummary `json:"domains"`
Artifacts []Artifact `json:"artifacts"`
}
type GraphStats ¶
type Relationship ¶
Click to show internal directories.
Click to hide internal directories.