Files
keyhunter/pkg/recon/sources/testhelpers_test.go
salvacybersec 9273f356e6 feat(10-01): add provider-driven query generator and RegisterAll skeleton
- BuildQueries(reg, source) dedups keywords and formats per-source syntax
- github/gist use 'keyword' in:file; others use bare keyword
- SourcesConfig placeholder struct for Wave 2 plans to depend on
- RegisterAll no-op stub (Plan 10-09 will fill)
2026-04-06 01:09:57 +03:00

10 lines
286 B
Go

package sources
import "github.com/salvacybersec/keyhunter/pkg/recon"
// newTestEngine returns an empty recon.Engine for tests that need a non-nil
// engine to exercise registration paths without touching real sources.
func newTestEngine() *recon.Engine {
return recon.NewEngine()
}