11 lines
120 B
Go
11 lines
120 B
Go
![]() |
package main
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
"net/url"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
http.DefaultClient.Do(&http.Request{URL: &url.URL{}})
|
||
|
}
|