From adcda62197c5eb58a85339b9b80fbe8f383b25a0 Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Mon, 14 Jan 2019 21:32:12 +0000 Subject: [PATCH] Fix api changes --- stream.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/stream.go b/stream.go index 115f0e4..b7adb2f 100644 --- a/stream.go +++ b/stream.go @@ -50,6 +50,10 @@ func (h *httpStream) Request() client.Request { return h.request } +func (h *httpStream) Response() client.Response { + return nil +} + func (h *httpStream) Send(msg interface{}) error { h.Lock() defer h.Unlock()