(ctx *context.Context)
| 567 | } |
| 568 | |
| 569 | func newRequestDep1(ctx *context.Context) *testCustomStruct { |
| 570 | return &testCustomStruct{ |
| 571 | Name: ctx.URLParam("name"), |
| 572 | Age: ctx.URLParamIntDefault("age", 0), |
| 573 | } |
| 574 | } |
| 575 | |
| 576 | type testMyContext struct { |
| 577 | Context *context.Context |
nothing calls this directly
no test coverage detected
searching dependent graphs…