(w http.ResponseWriter, r *http.Request)
| 401 | type mockAPI struct{} |
| 402 | |
| 403 | func (ma mockAPI) ServeHTTP(w http.ResponseWriter, r *http.Request) { |
| 404 | w.WriteHeader(http.StatusCreated) |
| 405 | _, _ = w.Write([]byte("Created")) |
| 406 | } |
| 407 | |
| 408 | type errorOriginTransport struct{} |
| 409 |
no test coverage detected