CallbackSpec is a structure encapsulating a Function and it's Path. It is the type of the values in callbacks map.
| 64 | // CallbackSpec is a structure encapsulating a Function and it's Path. |
| 65 | // It is the type of the values in callbacks map. |
| 66 | type CallbackSpec struct { |
| 67 | // Path represents the callback's path in the arguments structure. |
| 68 | Path Path |
| 69 | Function Function |
| 70 | } |
| 71 | |
| 72 | // Path represents a callback function's path in the arguments structure. |
| 73 | // Contains mixture of string and integer values. |
nothing calls this directly
no outgoing calls
no test coverage detected