(httpServer *http.Server, listener net.Listener)
| 145 | } |
| 146 | |
| 147 | func httpServe(httpServer *http.Server, listener net.Listener) error { |
| 148 | if httpServer.TLSConfig != nil { |
| 149 | return httpServer.ServeTLS(listener, "", "") |
| 150 | } |
| 151 | return httpServer.Serve(listener) |
| 152 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…