Move from nspcc-dev to TrueCloudLab

Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
This commit is contained in:
Evgenii Stratonikov 2022-12-10 13:15:37 +03:00
parent 85abb43253
commit be714f6299
7 changed files with 7 additions and 7 deletions

View file

@ -7,7 +7,7 @@ import (
"fmt"
"os"
"github.com/nspcc-dev/tzhash/tz"
"github.com/TrueCloudLab/tzhash/tz"
)
var (

View file

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

2
go.mod
View file

@ -1,4 +1,4 @@
module github.com/nspcc-dev/tzhash
module github.com/TrueCloudLab/tzhash
go 1.16

View file

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

View file

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

View file

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

View file

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