(_ http.ResponseWriter, _ *http.Request, payload []byte)
| 48 | type HttpHandler func(w http.ResponseWriter, r *http.Request, payload []byte) Record |
| 49 | |
| 50 | func DefaultHttpHandler(_ http.ResponseWriter, _ *http.Request, payload []byte) Record { |
| 51 | return NewRecordImpl(payload, func() {}) |
| 52 | } |
| 53 | |
| 54 | type endpointHandler struct { |
| 55 | ctx context.Context |
nothing calls this directly
no test coverage detected