(path string, f func(w http.ResponseWriter, r *http.Request))
| 169 | } |
| 170 | |
| 171 | func (mux *Multiplexer) HandleFunc(path string, f func(w http.ResponseWriter, r *http.Request)) { |
| 172 | mux.handlers[path] = f |
| 173 | } |
| 174 | |
| 175 | func StartHTTPServer() { |
| 176 | var err error |
no outgoing calls
no test coverage detected