Update module name due to self-hosting relocation
This commit is contained in:
parent
9eb3a69449
commit
c9f5cb0e1f
3 changed files with 4 additions and 4 deletions
|
@ -21,7 +21,7 @@ Priority pool:
|
||||||
## Install
|
## Install
|
||||||
|
|
||||||
```
|
```
|
||||||
go get -u github.com/alexvanin/priopool
|
go get -u git.alexvan.in/alexvanin/priopool
|
||||||
```
|
```
|
||||||
|
|
||||||
## Example
|
## Example
|
||||||
|
@ -35,7 +35,7 @@ import (
|
||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/alexvanin/priopool"
|
"git.alexvan.in/alexvanin/priopool"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
|
2
go.mod
2
go.mod
|
@ -1,4 +1,4 @@
|
||||||
module github.com/alexvanin/priopool
|
module git.alexvan.in/alexvanin/priopool
|
||||||
|
|
||||||
go 1.17
|
go 1.17
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ import (
|
||||||
|
|
||||||
"github.com/stretchr/testify/require"
|
"github.com/stretchr/testify/require"
|
||||||
|
|
||||||
"github.com/alexvanin/priopool"
|
"git.alexvan.in/alexvanin/priopool"
|
||||||
)
|
)
|
||||||
|
|
||||||
type syncList struct {
|
type syncList struct {
|
||||||
|
|
Loading…
Reference in a new issue