dorkgen/dorkgen.go

17 lines
399 B
Go
Raw Normal View History

2020-02-24 19:21:12 +00:00
package dorkgen
2020-02-24 19:48:28 +00:00
// EngineFactory is the main interface for
// search engine implementations.
2020-02-24 19:21:12 +00:00
type EngineFactory interface {
Site(string) *GoogleSearch
ToString() string
2020-02-25 09:01:09 +00:00
ToURL() string
2020-02-24 19:21:12 +00:00
Intext(string) *GoogleSearch
Inurl(string) *GoogleSearch
Filetype(string) *GoogleSearch
Cache(string) *GoogleSearch
Related(string) *GoogleSearch
Ext(string) *GoogleSearch
Exclude(string) *GoogleSearch
}