Update module name due to self-hosting relocation

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

View file

@ -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
View file

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

View file

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