bitfield/linkchecker/main.go

15 lines
370 B
Go
Raw Permalink Normal View History

2022-02-23 03:22:24 +01:00
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()
}