(b BeforeActivation)
| 283 | } |
| 284 | |
| 285 | func (t *testControllerBindDeep) BeforeActivation(b BeforeActivation) { |
| 286 | b.Dependencies().Register(func(ctx iris.Context) (v testCustomStruct, err error) { |
| 287 | err = ctx.ReadJSON(&v) |
| 288 | return |
| 289 | }) |
| 290 | } |
| 291 | |
| 292 | func (t *testControllerBindDeep) Get() { |
| 293 | // t.testControllerBindStruct.Get() |
no test coverage detected