File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ type RangeSet struct {
28
28
29
29
//go:generate ifacemaker --file req.go --struct DefaultReq --iface Req --pkg fiber --output req_interface_gen.go --not-exported true --iface-comment "Req is an interface for request-related Ctx methods."
30
30
type DefaultReq struct {
31
- c Ctx
31
+ c * DefaultCtx
32
32
}
33
33
34
34
// Accepts checks if the specified extensions or content types are acceptable.
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ type ResFmt struct {
120
120
121
121
//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."
122
122
type DefaultRes struct {
123
- c Ctx
123
+ c * DefaultCtx
124
124
}
125
125
126
126
// App returns the *App reference to the instance of the Fiber application
You can’t perform that action at this time.
0 commit comments