From c6fe509f4a0c6746544a6320f6d1237e74424a7a Mon Sep 17 00:00:00 2001 From: Gabriel Date: Wed, 27 Sep 2023 09:50:47 +0200 Subject: [PATCH] Add stream interface back to `Cmdable` (#2725) Without it we can't call stream functions from `Cmdable` and alikes. Co-authored-by: ofekshenawa <104765379+ofekshenawa@users.noreply.github.com> --- commands.go | 1 + 1 file changed, 1 insertion(+) diff --git a/commands.go b/commands.go index fffea441..d791753d 100644 --- a/commands.go +++ b/commands.go @@ -224,6 +224,7 @@ type Cmdable interface { GearsCmdable ProbabilisticCmdable TimeseriesCmdable + StreamCmdable } type StatefulCmdable interface {