chore: add missing godocs

pull/18/head
sundowndev 2020-09-06 17:39:04 +02:00
parent 97321d6ae5
commit 56b5a932e3
1 changed files with 2 additions and 0 deletions

View File

@ -5,10 +5,12 @@ import (
"github.com/sundowndev/dorkgen/googlesearch" "github.com/sundowndev/dorkgen/googlesearch"
) )
// NewGoogleSearch returns a new instance of GoogleSearch
func NewGoogleSearch() *googlesearch.GoogleSearch { func NewGoogleSearch() *googlesearch.GoogleSearch {
return googlesearch.New() return googlesearch.New()
} }
// NewDuckDuckGo returns a new instance of DuckDuckGo
func NewDuckDuckGo() *duckduckgo.DuckDuckGo { func NewDuckDuckGo() *duckduckgo.DuckDuckGo {
return duckduckgo.New() return duckduckgo.New()
} }