adding vendor folder

This commit is contained in:
evilsocket 2018-03-23 15:25:11 +01:00
commit c304ca4696
No known key found for this signature in database
GPG key ID: 1564D7F30393A456
1145 changed files with 369961 additions and 2 deletions

14
vendor/github.com/jpillora/go-tld/example/main.go generated vendored Normal file
View file

@ -0,0 +1,14 @@
package main
import (
"fmt"
"github.com/jpillora/go-tld"
)
func main() {
u, _ := tld.Parse("http://a.very.complex-domain.co.uk:8080/foo/bar")
fmt.Printf("%s\n = [ %s ] [ %s ] [ %s ] [ %s ] [ %s ]",
u, u.Subdomain, u.Domain, u.TLD, u.Port, u.Path)
}