(v interface{})
| 132 | type Handlers = []Handler |
| 133 | |
| 134 | func valueOf(v interface{}) reflect.Value { |
| 135 | if val, ok := v.(reflect.Value); ok { |
| 136 | return val |
| 137 | } |
| 138 | |
| 139 | return reflect.ValueOf(v) |
| 140 | } |
| 141 | |
| 142 | // HandlerName returns the handler's function name. |
| 143 | // See `Context.HandlerName` method to get function name of the current running handler in the chain. |
no outgoing calls
no test coverage detected
searching dependent graphs…