(pattern string, fn func(http.ResponseWriter, *http.Request))
| 139 | } |
| 140 | |
| 141 | func (s *Server) HandleFunc(pattern string, fn func(http.ResponseWriter, *http.Request)) { |
| 142 | s.mux.HandleFunc(pattern, fn) |
| 143 | } |
| 144 | |
| 145 | func (s *Server) Handle(pattern string, handler http.Handler) { |
| 146 | s.mux.Handle(pattern, handler) |
no outgoing calls
no test coverage detected