This commit is contained in:
2018-05-22 19:24:19 +02:00
commit 546188fb7d
5 changed files with 180 additions and 0 deletions

14
main.go Normal file
View File

@@ -0,0 +1,14 @@
package main
import (
"flag"
"github.com/hellerve/crawl/crawler"
)
func main() {
url := flag.String("url", "https://example.com/", "The URL to crawl")
flag.Parse()
crawler.Crawl(*url)
}