From bb888421de78871d637f4d21e18b746bb69072d8 Mon Sep 17 00:00:00 2001 From: Alex Vanin Date: Sat, 4 Mar 2023 21:14:13 +0300 Subject: [PATCH] Update module name due to self-hosting relocation --- README.md | 4 ++-- go.mod | 2 +- pool_test.go | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 242283e..583b9fd 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Priority pool: ## Install ``` -go get -u github.com/alexvanin/priopool +go get -u git.alexvan.in/alexvanin/priopool ``` ## Example @@ -35,7 +35,7 @@ import ( "sync" "time" - "github.com/alexvanin/priopool" + "git.alexvan.in/alexvanin/priopool" ) func main() { diff --git a/go.mod b/go.mod index 426ea98..70e4585 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/alexvanin/priopool +module git.alexvan.in/alexvanin/priopool go 1.17 diff --git a/pool_test.go b/pool_test.go index dc4dea8..b2ea920 100644 --- a/pool_test.go +++ b/pool_test.go @@ -8,7 +8,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/alexvanin/priopool" + "git.alexvan.in/alexvanin/priopool" ) type syncList struct {