()
| 9 | ) |
| 10 | |
| 11 | func init() { |
| 12 | bind := os.Getenv("IMGPROXY_PPROF_BIND") |
| 13 | |
| 14 | if len(bind) == 0 { |
| 15 | bind = ":8088" |
| 16 | } |
| 17 | |
| 18 | go func() { |
| 19 | http.ListenAndServe(bind, nil) |
| 20 | }() |
| 21 | } |
nothing calls this directly
no outgoing calls
no test coverage detected