Files
gf/.example/other/test.go
2019-09-05 23:48:54 +08:00

14 lines
219 B
Go

package main
import (
"fmt"
"net/url"
)
func main() {
parse1, _ := url.Parse("https://gf.cdn.johng.cn")
parse2, _ := url.Parse("https://gf.cdn.johng.cn/cli/")
fmt.Println(parse1.Host)
fmt.Println(parse2.Host)
}