(w http.ResponseWriter, r *http.Request)
| 240 | } |
| 241 | |
| 242 | func (fserver *FileServer) ServeHTTP(w http.ResponseWriter, r *http.Request) { |
| 243 | fserver.ServeHTTPContext(context.Background(), w, r) |
| 244 | } |
| 245 | |
| 246 | // ServeHTTPContext is like ServeHTTP, but with added context |
| 247 | func (fserver *FileServer) ServeHTTPContext( |