(handler *RpcResponseHandler)
| 50 | } |
| 51 | |
| 52 | func noImplHandler(handler *RpcResponseHandler) bool { |
| 53 | handler.SendResponseError(fmt.Errorf("command %q not implemented", handler.GetCommand())) |
| 54 | return true |
| 55 | } |
| 56 | |
| 57 | func recodeCommandData(command string, data any, commandDataType reflect.Type) (any, error) { |
| 58 | if command == "" || commandDataType == nil { |
nothing calls this directly
no test coverage detected