GokuServer gokuServer
| 13 | |
| 14 | //GokuServer gokuServer |
| 15 | type GokuServer struct { |
| 16 | factory *AccountHandlerFactory |
| 17 | mux *http.ServeMux |
| 18 | } |
| 19 | |
| 20 | func (s *GokuServer) ServeHTTP(w http.ResponseWriter, r *http.Request) { |
| 21 | s.mux.ServeHTTP(w, r) |
nothing calls this directly
no outgoing calls
no test coverage detected