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()