Rename package name

Due to source code relocation from GitHub.

Signed-off-by: Alex Vanin <a.vanin@yadro.com>
pull/8/head v1.8.0
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"
)