File tree Expand file tree Collapse file tree 5 files changed +26
-29
lines changed Expand file tree Collapse file tree 5 files changed +26
-29
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ package model
2+
3+ import "net"
4+
5+ type GoPackageResult struct {
6+ Name string // Package name
7+ Path string // Fully qualified package path
8+ Description string // Package description
9+ }
10+
11+ type NPMPackageResult struct {
12+ Name string // Package name
13+ Description string // Package description
14+ IsExactMatch bool // Is exact match?
15+ }
16+
17+ type PyPIPackageResult struct {
18+ Name string // Package name
19+ Description string // Package description
20+ Author string // Package author
21+ }
22+
23+ type DNSResult struct {
24+ FQDN string // Fully qualified domain name
25+ IPList []net.IP // Associated IP addresses
26+ }
You can’t perform that action at this time.
0 commit comments