Function is the type for sending and receiving functions in dnode messages.
| 7 | |
| 8 | // Function is the type for sending and receiving functions in dnode messages. |
| 9 | type Function struct { |
| 10 | Caller caller |
| 11 | } |
| 12 | |
| 13 | type caller interface { |
| 14 | Call(args ...interface{}) error |
nothing calls this directly
no outgoing calls
no test coverage detected