Source is the passive scraping agent
| 12 | |
| 13 | // Source is the passive scraping agent |
| 14 | type Source struct { |
| 15 | apiKeys []string |
| 16 | timeTaken time.Duration |
| 17 | errors int |
| 18 | results int |
| 19 | requests int |
| 20 | skipped bool |
| 21 | } |
| 22 | |
| 23 | // Run function returns all subdomains found with the service |
| 24 | func (s *Source) Run(ctx context.Context, domain string, session *subscraping.Session) <-chan subscraping.Result { |
nothing calls this directly
no outgoing calls
no test coverage detected