(args ...interface{})
| 58 | type functionReceived func(...interface{}) error |
| 59 | |
| 60 | func (f functionReceived) Call(args ...interface{}) error { |
| 61 | return f(args...) |
| 62 | } |
| 63 | |
| 64 | // CallbackSpec is a structure encapsulating a Function and it's Path. |
| 65 | // It is the type of the values in callbacks map. |
nothing calls this directly
no outgoing calls
no test coverage detected