DefaultRes is the default implementation of Res used by DefaultCtx. go:generate ifacemaker --file res.go --struct DefaultRes --iface Res --pkg fiber --output res_interface_gen.go --not-exported true --iface-comment "Res is an interface for response-related Ctx methods."
| 127 | // |
| 128 | //go:generate ifacemaker --file res.go --struct DefaultRes --iface Res --pkg fiber --output res_interface_gen.go --not-exported true --iface-comment "Res is an interface for response-related Ctx methods." |
| 129 | type DefaultRes struct { |
| 130 | c *DefaultCtx |
| 131 | } |
| 132 | |
| 133 | // App returns the *App reference to the instance of the Fiber application |
| 134 | func (r *DefaultRes) App() *App { |
nothing calls this directly
no outgoing calls
no test coverage detected