summaryrefslogtreecommitdiff
path: root/crawler/utility.go
diff options
context:
space:
mode:
Diffstat (limited to 'crawler/utility.go')
-rw-r--r--crawler/utility.go6
1 files changed, 0 insertions, 6 deletions
diff --git a/crawler/utility.go b/crawler/utility.go
index e0acf3f..5fa78c4 100644
--- a/crawler/utility.go
+++ b/crawler/utility.go
@@ -10,12 +10,6 @@ import (
"github.com/gocolly/colly"
)
-func customCollector(allowed_urls []string) *colly.Collector {
- return colly.NewCollector(
- colly.AllowedDomains(allowed_urls...),
- )
-}
-
func stringInSlice(a string, list []string) bool {
for _, b := range list {
if b == a {