(c *Context, _ any)
| 107 | } |
| 108 | |
| 109 | func defaultHandleRecovery(c *Context, _ any) { |
| 110 | c.AbortWithStatus(http.StatusInternalServerError) |
| 111 | } |
| 112 | |
| 113 | // stack returns a nicely formatted stack frame, skipping skip frames. |
| 114 | func stack(skip int) []byte { |
nothing calls this directly
no test coverage detected