package registry import ( "github.com/anotherhadi/iknowyou/internal/tools" breachdirectory "github.com/anotherhadi/iknowyou/internal/tools/breachdirectory" crtsh "github.com/anotherhadi/iknowyou/internal/tools/crtsh" digtool "github.com/anotherhadi/iknowyou/internal/tools/dig" githubrecon "github.com/anotherhadi/iknowyou/internal/tools/github-recon" gravatarrecon "github.com/anotherhadi/iknowyou/internal/tools/gravatar-recon" ipinfotool "github.com/anotherhadi/iknowyou/internal/tools/ipinfo" leakcheck "github.com/anotherhadi/iknowyou/internal/tools/leakcheck" maigret "github.com/anotherhadi/iknowyou/internal/tools/maigret" userscanner "github.com/anotherhadi/iknowyou/internal/tools/user-scanner" wappalyzer "github.com/anotherhadi/iknowyou/internal/tools/wappalyzer" whoistool "github.com/anotherhadi/iknowyou/internal/tools/whois" whoisfreaks "github.com/anotherhadi/iknowyou/internal/tools/whoisfreaks" ) var Factories = []func() tools.ToolRunner{ userscanner.New, githubrecon.New, whoistool.New, digtool.New, ipinfotool.New, gravatarrecon.New, whoisfreaks.New, maigret.New, leakcheck.New, crtsh.New, breachdirectory.New, wappalyzer.New, }