Add linkchecker

This commit is contained in:
2022-02-23 03:22:24 +01:00
parent 0948cefe10
commit 62c62b5c33
4 changed files with 205 additions and 0 deletions

14
linkchecker/main.go Normal file
View File

@@ -0,0 +1,14 @@
package main
import "linkchecker/linkchecker"
func main() {
lc := linkchecker.New("https://bitfieldconsulting.com/golang/how")
//lc := linkchecker.New("https://example.com")
//lc := linkchecker.New("https://www.aksjhdfjkhashjkd.com/")
//lc := linkchecker.New("https://lamehackersguide.blogspot.com/2017/02/weaponizing-postscript.html")
lc.Scan(3)
lc.Print()
}