dorkgen/dorkgen.go

18 lines
428 B
Go
Raw Normal View History

2020-02-24 19:21:12 +00:00
package dorkgen
2020-02-27 18:47:17 +00:00
// engineFactory is the main interface for
2020-02-24 19:48:28 +00:00
// search engine implementations.
2020-02-27 18:47:17 +00:00
type engineFactory interface {
2020-02-24 19:21:12 +00:00
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
2020-02-26 14:53:21 +00:00
Group(string) *GoogleSearch
2020-02-24 19:21:12 +00:00
}