mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-18 01:06:39 +08:00
13 lines
221 B
Go
13 lines
221 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"net/url"
|
|
)
|
|
|
|
func main() {
|
|
text := "https://nk.img.r9it.com/chatgpt-plus/1712709360012445.png"
|
|
parse, _ := url.Parse(text)
|
|
fmt.Println(fmt.Sprintf("%s://%s", parse.Scheme, parse.Host))
|
|
}
|