Skip to content

Commit

Permalink
Merge pull request #27 from inaciogu/fix/organization
Browse files Browse the repository at this point in the history
fix: rename consumer/client to consumer
  • Loading branch information
inaciogu committed Jan 14, 2024
2 parents 0e81d3b + e60e61d commit af93c93
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion consumer/handler/sqs_handler.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package handler

import sqsclient "github.com/inaciogu/go-sqs/consumer/client"
import sqsclient "github.com/inaciogu/go-sqs/consumer"

// SQSHandler is responsible for running the SQS clients concurrently
type SQSHandler struct {
Expand Down
2 changes: 1 addition & 1 deletion consumer/handler/sqs_handler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"testing"
"time"

sqsclient "github.com/inaciogu/go-sqs/consumer/client"
sqsclient "github.com/inaciogu/go-sqs/consumer"
"github.com/inaciogu/go-sqs/consumer/handler"
"github.com/inaciogu/go-sqs/mocks"
"github.com/stretchr/testify/suite"
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/sqs"
"github.com/inaciogu/go-sqs/consumer/client"
client "github.com/inaciogu/go-sqs/consumer"
"github.com/inaciogu/go-sqs/consumer/message"
"github.com/inaciogu/go-sqs/mocks"
"github.com/stretchr/testify/assert"
Expand Down

0 comments on commit af93c93

Please sign in to comment.