Update module name due to self-hosting relocation

This commit is contained in:
Alex Vanin 2023-03-04 21:14:13 +03:00
parent 9eb3a69449
commit bb888421de
3 changed files with 4 additions and 4 deletions

View file

@ -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() {

2
go.mod
View file

@ -1,4 +1,4 @@
module github.com/alexvanin/priopool
module git.alexvan.in/alexvanin/priopool
go 1.17

View file

@ -8,7 +8,7 @@ import (
"github.com/stretchr/testify/require"
"github.com/alexvanin/priopool"
"git.alexvan.in/alexvanin/priopool"
)
type syncList struct {