15 lines
327 B
Go
15 lines
327 B
Go
package dorkgen
|
|
|
|
// EngineFactory ...
|
|
type EngineFactory interface {
|
|
Site(string) *GoogleSearch
|
|
ToString() string
|
|
Intext(string) *GoogleSearch
|
|
Inurl(string) *GoogleSearch
|
|
Filetype(string) *GoogleSearch
|
|
Cache(string) *GoogleSearch
|
|
Related(string) *GoogleSearch
|
|
Ext(string) *GoogleSearch
|
|
Exclude(string) *GoogleSearch
|
|
}
|