(mux *http.ServeMux)
| 39 | } |
| 40 | |
| 41 | func (s *Server) serveHTTP(mux *http.ServeMux) { |
| 42 | mux.HandleFunc("/_/ipxe", s.handleIpxe) |
| 43 | mux.HandleFunc("/_/file", s.handleFile) |
| 44 | mux.HandleFunc("/_/booting", s.handleBooting) |
| 45 | } |
| 46 | |
| 47 | func (s *Server) handleIpxe(w http.ResponseWriter, r *http.Request) { |
| 48 | overallStart := time.Now() |
nothing calls this directly
no outgoing calls
no test coverage detected