From a22c9bda4676cf75eb0ff27c05390f9833bfe42d Mon Sep 17 00:00:00 2001 From: Kemal Hadimli Date: Wed, 2 Oct 2024 11:35:55 +0100 Subject: [PATCH] fix import order --- writers/streamingbatchwriter/streamingbatchwriter.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/writers/streamingbatchwriter/streamingbatchwriter.go b/writers/streamingbatchwriter/streamingbatchwriter.go index 73d89c7009..f068f6837f 100644 --- a/writers/streamingbatchwriter/streamingbatchwriter.go +++ b/writers/streamingbatchwriter/streamingbatchwriter.go @@ -25,12 +25,11 @@ import ( "sync" "time" - "github.com/rs/zerolog" - "github.com/cloudquery/plugin-sdk/v4/internal/batch" "github.com/cloudquery/plugin-sdk/v4/message" "github.com/cloudquery/plugin-sdk/v4/schema" "github.com/cloudquery/plugin-sdk/v4/writers" + "github.com/rs/zerolog" ) // Client is the interface that must be implemented by the client of StreamingBatchWriter.