()
| 19 | var httpLogger zerolog.Logger |
| 20 | |
| 21 | func init() { |
| 22 | httpLogger = logging.GetLogger("http_logger") |
| 23 | } |
| 24 | |
| 25 | func RWContextMiddleware(next http.Handler) http.Handler { |
| 26 | return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { |
nothing calls this directly
no test coverage detected