| 14 | ) |
| 15 | |
| 16 | type pprofServer struct { |
| 17 | mu sync.Mutex |
| 18 | server *http.Server |
| 19 | addr string |
| 20 | enabled bool |
| 21 | } |
| 22 | |
| 23 | func newPprofServer() *pprofServer { |
| 24 | return &pprofServer{} |
nothing calls this directly
no outgoing calls
no test coverage detected