21 lines
277 B
Go
21 lines
277 B
Go
package main
|
|
|
|
import (
|
|
"net/http"
|
|
"strings"
|
|
)
|
|
|
|
type MyHttpClient struct {
|
|
*http.Client
|
|
}
|
|
|
|
func main() {
|
|
c := new(MyHttpClient)
|
|
c.Client = new(http.Client)
|
|
_, err := c.Get("url")
|
|
println(strings.Contains(err.Error(), "unsupported protocol scheme"))
|
|
}
|
|
|
|
// Output:
|
|
// true
|