Skip to content

Commit ee9bb00

Browse files
authored
Merge pull request #41 from simplegear/v1
V1
2 parents 4caae08 + 290d5dc commit ee9bb00

10 files changed

+10
-10
lines changed

examples/queue_with_simple_start_stop_dynamic_execute.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"syscall"
1010
"time"
1111

12-
req "github.com/PavelAgarkov/rate-envelope-queue"
12+
req "github.com/simplegear/rate-envelope-queue"
1313
)
1414

1515
type User struct {

examples/simple_queue_with_simple_combine_envelopes.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"syscall"
99
"time"
1010

11-
req "github.com/PavelAgarkov/rate-envelope-queue"
11+
req "github.com/simplegear/rate-envelope-queue"
1212
)
1313

1414
func main() {

examples/simple_queue_with_simple_dynamic_envelopes.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"syscall"
99
"time"
1010

11-
req "github.com/PavelAgarkov/rate-envelope-queue"
11+
req "github.com/simplegear/rate-envelope-queue"
1212
)
1313

1414
func main() {

examples/simple_queue_with_simple_preset_envelopes.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"syscall"
99
"time"
1010

11-
req "github.com/PavelAgarkov/rate-envelope-queue"
11+
req "github.com/simplegear/rate-envelope-queue"
1212
)
1313

1414
func main() {

examples/simple_queue_with_simple_schedule_envelopes.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"syscall"
99
"time"
1010

11-
req "github.com/PavelAgarkov/rate-envelope-queue"
11+
req "github.com/simplegear/rate-envelope-queue"
1212
)
1313

1414
func main() {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/PavelAgarkov/rate-envelope-queue
1+
module github.com/simplegear/rate-envelope-queue
22

33
go 1.24.0
44

tests/envelope_sending_to_queue_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"testing"
88
"time"
99

10-
req "github.com/PavelAgarkov/rate-envelope-queue"
10+
req "github.com/simplegear/rate-envelope-queue"
1111
"github.com/stretchr/testify/assert"
1212
)
1313

tests/envelope_test.go

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

8-
req "github.com/PavelAgarkov/rate-envelope-queue"
8+
req "github.com/simplegear/rate-envelope-queue"
99
"github.com/stretchr/testify/assert"
1010
)
1111

tests/queue_test.go

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

8-
req "github.com/PavelAgarkov/rate-envelope-queue"
8+
req "github.com/simplegear/rate-envelope-queue"
99
"github.com/stretchr/testify/assert"
1010
)
1111

tests/worker_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package tests
33
import (
44
"context"
55
"fmt"
6-
req "github.com/PavelAgarkov/rate-envelope-queue"
6+
req "github.com/simplegear/rate-envelope-queue"
77
"github.com/stretchr/testify/assert"
88
"testing"
99
"time"

0 commit comments

Comments
 (0)