| 30 | ) |
| 31 | |
| 32 | type Crawler struct { |
| 33 | logger *slog.Logger |
| 34 | launcher *browser.Launcher |
| 35 | options Options |
| 36 | crawlQueue queue.Queue[*types.Action] |
| 37 | crawlGraph *graph.CrawlGraph |
| 38 | simhashOracle *simhash.Oracle |
| 39 | uniqueActions map[string]struct{} |
| 40 | diagnostics diagnostics.Writer |
| 41 | loggedIn bool |
| 42 | } |
| 43 | |
| 44 | type Options struct { |
| 45 | ChromiumPath string |
nothing calls this directly
no outgoing calls
no test coverage detected