diff --git a/cli/cli.go b/cli/cli.go index 1bba59cea..9d251ac7c 100644 --- a/cli/cli.go +++ b/cli/cli.go @@ -15,7 +15,6 @@ import ( featurebase "github.com/featurebasedb/featurebase/v3" "github.com/featurebasedb/featurebase/v3/cli/batch" "github.com/featurebasedb/featurebase/v3/cli/fbcloud" - "github.com/featurebasedb/featurebase/v3/cli/kafka" "github.com/featurebasedb/featurebase/v3/errors" "github.com/featurebasedb/featurebase/v3/logger" ) @@ -88,10 +87,6 @@ type Command struct { // `-c` flag in the command line. nonInteractiveMode bool - // kafkaRunner will be non-nil if the CLI has been configured to consume - // from kafka. In that case, Command will run in non-interactive mode. - kafkaRunner *kafka.Runner - // quit gets closed when Run should stop listening for input. quit chan struct{} }