Skip to content

Commit 6148a97

Browse files
committed
Renames to github.com/simodima
1 parent 353ef6f commit 6148a97

File tree

13 files changed

+20
-20
lines changed

13 files changed

+20
-20
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
---
1010

1111
[![codecov](https://codecov.io/github/simodima/squeue/graph/badge.svg?token=DW7C57P2VW)](https://codecov.io/github/simodima/squeue)
12-
[![Go Report Card](https://goreportcard.com/badge/github.com/toretto460/squeue)](https://goreportcard.com/report/github.com/toretto460/squeue)
12+
[![Go Report Card](https://goreportcard.com/badge/github.com/simodima/squeue)](https://goreportcard.com/report/github.com/simodima/squeue)
1313
[![Go Reference](https://pkg.go.dev/badge/github.com/simodima/squeue.svg)](https://pkg.go.dev/github.com/simodima/squeue)
1414

1515
The library provides the following features:

consumer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"context"
55
"encoding/json"
66

7-
"github.com/toretto460/squeue/driver"
7+
"github.com/simodima/squeue/driver"
88
)
99

1010
//go:generate mockgen -source=driver/driver.go -package=squeue_test -destination=driver_test.go

consumer_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
"github.com/golang/mock/gomock"
99
"github.com/stretchr/testify/suite"
1010

11-
"github.com/toretto460/squeue"
12-
"github.com/toretto460/squeue/driver"
11+
"github.com/simodima/squeue"
12+
"github.com/simodima/squeue/driver"
1313
)
1414

1515
type ConsumerTestSuite struct {

driver/memdriver_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"testing"
66
"time"
77

8+
"github.com/simodima/squeue/driver"
89
"github.com/stretchr/testify/suite"
9-
"github.com/toretto460/squeue/driver"
1010
)
1111

1212
type MemoryTestSuite struct {

driver_test.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/toretto460/squeue
1+
module github.com/simodima/squeue
22

33
go 1.18
44

internal/examples/memory/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
"syscall"
1010
"time"
1111

12-
"github.com/toretto460/squeue"
13-
"github.com/toretto460/squeue/driver"
12+
"github.com/simodima/squeue"
13+
"github.com/simodima/squeue/driver"
1414
)
1515

1616
type myMessage struct {

internal/examples/sqs/consumer/consumer.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import (
88
"syscall"
99

1010
"github.com/joho/godotenv"
11-
"github.com/toretto460/squeue"
12-
sqsexample "github.com/toretto460/squeue/internal/examples/sqs"
13-
"github.com/toretto460/squeue/sqs"
11+
"github.com/simodima/squeue"
12+
sqsexample "github.com/simodima/squeue/internal/examples/sqs"
13+
"github.com/simodima/squeue/sqs"
1414
)
1515

1616
func cancelOnSignal(fn func(), signals ...os.Signal) {

internal/examples/sqs/producer/producer.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import (
88

99
"github.com/joho/godotenv"
1010

11-
"github.com/toretto460/squeue"
12-
sqsexample "github.com/toretto460/squeue/internal/examples/sqs"
13-
"github.com/toretto460/squeue/sqs"
11+
"github.com/simodima/squeue"
12+
sqsexample "github.com/simodima/squeue/internal/examples/sqs"
13+
"github.com/simodima/squeue/sqs"
1414
)
1515

1616
func init() {

producer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package squeue
33
import (
44
"encoding/json"
55

6-
"github.com/toretto460/squeue/driver"
6+
"github.com/simodima/squeue/driver"
77
)
88

99
func NewProducer(d driver.Driver) Producer {

0 commit comments

Comments
 (0)