| 129 | } |
| 130 | |
| 131 | type Multiplexer struct { |
| 132 | handlers map[string]func(w http.ResponseWriter, r *http.Request) |
| 133 | Handler http.HandlerFunc |
| 134 | } |
| 135 | |
| 136 | func NewMultiplexer() *Multiplexer { |
| 137 | multiplexer := &Multiplexer{ |
nothing calls this directly
no outgoing calls
no test coverage detected