From 9275074a8ed9d20acceaf0dead776d51ab7cb22f Mon Sep 17 00:00:00 2001 From: Robin Tang Date: Sun, 14 Jul 2024 13:30:18 -0700 Subject: [PATCH] Imports. --- sources/dynamodb/dynamodb.go | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/sources/dynamodb/dynamodb.go b/sources/dynamodb/dynamodb.go index 4fb6c10c..a3ad0daf 100644 --- a/sources/dynamodb/dynamodb.go +++ b/sources/dynamodb/dynamodb.go @@ -3,17 +3,18 @@ package dynamodb import ( "context" "fmt" - "github.com/aws/aws-sdk-go-v2/service/dynamodbstreams/types" "time" - "github.com/artie-labs/reader/config" - "github.com/artie-labs/reader/lib/s3lib" - "github.com/artie-labs/reader/sources" - "github.com/artie-labs/reader/sources/dynamodb/offsets" awsCfg "github.com/aws/aws-sdk-go-v2/config" "github.com/aws/aws-sdk-go-v2/credentials" "github.com/aws/aws-sdk-go-v2/service/dynamodb" "github.com/aws/aws-sdk-go-v2/service/dynamodbstreams" + "github.com/aws/aws-sdk-go-v2/service/dynamodbstreams/types" + + "github.com/artie-labs/reader/config" + "github.com/artie-labs/reader/lib/s3lib" + "github.com/artie-labs/reader/sources" + "github.com/artie-labs/reader/sources/dynamodb/offsets" ) // jitterSleepBaseMs - sleep for 50 ms as the base.