HandlerWithParams same as `Handler` but it can receive a total path parameters counts to resolve coblex path parameters input dependencies.
(fn interface{}, paramsCount int)
| 365 | // HandlerWithParams same as `Handler` but it can receive a total path parameters counts |
| 366 | // to resolve coblex path parameters input dependencies. |
| 367 | func (c *Container) HandlerWithParams(fn interface{}, paramsCount int) context.Handler { |
| 368 | return makeHandler(fn, c, paramsCount) |
| 369 | } |
| 370 | |
| 371 | // Struct accepts a pointer to a struct value and returns a structure which |
| 372 | // contains bindings for the struct's fields and a method to |
no test coverage detected