Skip to content

Commit cea24b1

Browse files
Fix unused import in webhook-receiver
1 parent a47f8e8 commit cea24b1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lambda/webhook-receiver-go/main.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,15 @@ import (
55
"crypto/hmac"
66
"crypto/sha256"
77
"encoding/hex"
8-
"encoding/json"
98
"fmt"
109
"os"
1110

1211
"github.com/aws/aws-lambda-go/events"
1312
"github.com/aws/aws-lambda-go/lambda"
13+
"github.com/aws/aws-sdk-go-v2/aws"
1414
"github.com/aws/aws-sdk-go-v2/config"
1515
"github.com/aws/aws-sdk-go-v2/service/sqs"
1616
"github.com/aws/aws-sdk-go-v2/service/sqs/types"
17-
"github.com/aws/aws-sdk-go-v2/aws"
1817
)
1918

2019
var sqsClient *sqs.Client

0 commit comments

Comments
 (0)