mirror of
https://github.com/bettercap/bettercap
synced 2025-08-19 13:09:49 -07:00
adding vendor folder
This commit is contained in:
parent
49c65021ea
commit
c304ca4696
1145 changed files with 369961 additions and 2 deletions
14
vendor/github.com/jpillora/go-tld/example/main.go
generated
vendored
Normal file
14
vendor/github.com/jpillora/go-tld/example/main.go
generated
vendored
Normal 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)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue