Files
LearnGO/go/pkg/mod/github.com/go-delve/delve@v1.23.0/_fixtures/clientdo.go
T
2024-09-19 21:38:24 -04:00

11 lines
120 B
Go

package main
import (
"net/http"
"net/url"
)
func main() {
http.DefaultClient.Do(&http.Request{URL: &url.URL{}})
}