(req *http.Request)
| 390 | } |
| 391 | |
| 392 | func wantsBlobRef(req *http.Request) bool { |
| 393 | _, ok := blob.ParseKnown(httputil.PathSuffix(req)) |
| 394 | return ok |
| 395 | } |
| 396 | |
| 397 | func wantsDiscovery(req *http.Request) bool { |
| 398 | return httputil.IsGet(req) && |
no test coverage detected