shogo/internal/shodan/scan/scan.go

10 lines
208 B
Go
Raw Normal View History

package scan
// Scan manager
type Scan struct {
IPs []string // IP addresses
Port int // Port location
Protocol string // Protocol type
Results chan string // Results channel
}