From 7df7530e31c3a350aabda2b8d05a54d5144145c1 Mon Sep 17 00:00:00 2001 From: Molly Yang Date: Wed, 24 Mar 2021 13:40:45 -0700 Subject: [PATCH] Update package name same with repo --- README.md | 3 +-- benchmark_test.go | 2 +- example_test.go | 2 +- go.mod | 2 +- queue_test.go | 2 +- 5 files changed, 5 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 67af434..fedf590 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ package dque_test import ( "log" - "github.com/joncrlsn/dque" + "github.com/mengmengy/dque" ) // Item is what we'll be storing in the queue. It can be any struct @@ -158,4 +158,3 @@ func doSomething(item *Item) { ### alternative tools * [CurlyQ](https://github.com/mcmathja/curlyq) is a bit heavier (requires Redis) but has more background processing features. - diff --git a/benchmark_test.go b/benchmark_test.go index ef40691..3e09399 100644 --- a/benchmark_test.go +++ b/benchmark_test.go @@ -10,7 +10,7 @@ import ( "os" "testing" - "github.com/joncrlsn/dque" + "github.com/mengmengy/dque" ) // item3 is the thing we'll be storing in the queue diff --git a/example_test.go b/example_test.go index 765104b..18ed223 100644 --- a/example_test.go +++ b/example_test.go @@ -9,7 +9,7 @@ import ( "fmt" "log" - "github.com/joncrlsn/dque" + "github.com/mengmengy/dque" ) // Item is what we'll be storing in the queue. It can be any struct diff --git a/go.mod b/go.mod index f0ebbac..0e3ad66 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/joncrlsn/dque +module github.com/mengmengy/dque require github.com/pkg/errors v0.9.1 diff --git a/queue_test.go b/queue_test.go index 7742d22..27765fb 100644 --- a/queue_test.go +++ b/queue_test.go @@ -11,7 +11,7 @@ import ( "testing" "time" - "github.com/joncrlsn/dque" + "github.com/mengmengy/dque" ) // item2 is the thing we'll be storing in the queue