Rename package name

Due to source code relocation from GitHub.

Signed-off-by: Alex Vanin <a.vanin@yadro.com>
This commit is contained in:
Alexey Vanin 2023-03-07 13:47:29 +03:00
parent e5c13d22e1
commit 63e884006d
7 changed files with 7 additions and 7 deletions

View file

@ -7,7 +7,7 @@ import (
"fmt"
"os"
"github.com/TrueCloudLab/tzhash/tz"
"git.frostfs.info/TrueCloudLab/tzhash/tz"
)
var (

View file

@ -10,7 +10,7 @@ import (
"runtime"
"runtime/pprof"
"github.com/TrueCloudLab/tzhash/tz"
"git.frostfs.info/TrueCloudLab/tzhash/tz"
"golang.org/x/sys/cpu"
)

2
go.mod
View file

@ -1,4 +1,4 @@
module github.com/TrueCloudLab/tzhash
module git.frostfs.info/TrueCloudLab/tzhash
go 1.16

View file

@ -1,7 +1,7 @@
package tz
import (
"github.com/TrueCloudLab/tzhash/gf127"
"git.frostfs.info/TrueCloudLab/tzhash/gf127"
)
const (

View file

@ -4,7 +4,7 @@
package tz
import (
"github.com/TrueCloudLab/tzhash/gf127"
"git.frostfs.info/TrueCloudLab/tzhash/gf127"
"golang.org/x/sys/cpu"
)

View file

@ -3,7 +3,7 @@ package tz
import (
"errors"
"github.com/TrueCloudLab/tzhash/gf127"
"git.frostfs.info/TrueCloudLab/tzhash/gf127"
)
type (

View file

@ -5,7 +5,7 @@ import (
"testing"
"time"
"github.com/TrueCloudLab/tzhash/gf127"
"git.frostfs.info/TrueCloudLab/tzhash/gf127"
"github.com/stretchr/testify/require"
)