correct mod name

This commit is contained in:
David 2021-04-10 22:22:06 -04:00
parent d9feae081f
commit f70060b915
5 changed files with 8 additions and 8 deletions

2
go.mod
View File

@ -1,4 +1,4 @@
module git.yetaga.in/deltamualpha/libyear
module git.yetaga.in/alazyreader/libyear
go 1.16

View File

@ -5,9 +5,9 @@ import (
"fmt"
"os"
"git.yetaga.in/deltamualpha/libyear/pkg/gomod"
"git.yetaga.in/deltamualpha/libyear/pkg/libyear"
"git.yetaga.in/deltamualpha/libyear/pkg/logger"
"git.yetaga.in/alazyreader/libyear/pkg/gomod"
"git.yetaga.in/alazyreader/libyear/pkg/libyear"
"git.yetaga.in/alazyreader/libyear/pkg/logger"
)
func main() {

2
pkg/cache/cache.go vendored
View File

@ -1,6 +1,6 @@
package cache
import "git.yetaga.in/deltamualpha/libyear/pkg/libyear"
import "git.yetaga.in/alazyreader/libyear/pkg/libyear"
// Cache isn't concurrency-safe, but we don't care about that right now
type Cache struct {

View File

@ -3,7 +3,7 @@ package gomod
import (
"os"
"git.yetaga.in/deltamualpha/libyear/pkg/libyear"
"git.yetaga.in/alazyreader/libyear/pkg/libyear"
"golang.org/x/mod/modfile"
)

View File

@ -9,8 +9,8 @@ import (
"strconv"
"strings"
"git.yetaga.in/deltamualpha/libyear/pkg/cache"
"git.yetaga.in/deltamualpha/libyear/pkg/libyear"
"git.yetaga.in/alazyreader/libyear/pkg/cache"
"git.yetaga.in/alazyreader/libyear/pkg/libyear"
)
type Queryer struct {