Move to frostfs-node

Signed-off-by: Pavel Karpy <p.karpy@yadro.com>
This commit is contained in:
Pavel Karpy 2022-12-23 20:35:35 +03:00 committed by Stanislav Bogatyrev
parent 42554a9298
commit 923f84722a
934 changed files with 3470 additions and 3451 deletions

View file

@ -4,7 +4,7 @@ import (
"fmt"
"strings"
"github.com/nspcc-dev/neofs-node/pkg/util/locode"
"github.com/TrueCloudLab/frostfs-node/pkg/util/locode"
)
const (

View file

@ -3,7 +3,7 @@ package locodecolumn
import (
"fmt"
"github.com/nspcc-dev/neofs-node/pkg/util/locode"
"github.com/TrueCloudLab/frostfs-node/pkg/util/locode"
)
const countryCodeLen = 2

View file

@ -3,7 +3,7 @@ package locodecolumn
import (
"fmt"
"github.com/nspcc-dev/neofs-node/pkg/util/locode"
"github.com/TrueCloudLab/frostfs-node/pkg/util/locode"
)
const locationCodeLen = 3

View file

@ -8,8 +8,8 @@ import (
"os"
"strconv"
"github.com/nspcc-dev/neofs-node/pkg/util/locode"
locodedb "github.com/nspcc-dev/neofs-node/pkg/util/locode/db"
"github.com/TrueCloudLab/frostfs-node/pkg/util/locode"
locodedb "github.com/TrueCloudLab/frostfs-node/pkg/util/locode/db"
)
const (

View file

@ -6,8 +6,8 @@ import (
"fmt"
"path/filepath"
"github.com/nspcc-dev/neofs-node/pkg/util"
locodedb "github.com/nspcc-dev/neofs-node/pkg/util/locode/db"
"github.com/TrueCloudLab/frostfs-node/pkg/util"
locodedb "github.com/TrueCloudLab/frostfs-node/pkg/util/locode/db"
"go.etcd.io/bbolt"
)

View file

@ -4,7 +4,7 @@ import (
"fmt"
"os"
locodedb "github.com/nspcc-dev/neofs-node/pkg/util/locode/db"
locodedb "github.com/TrueCloudLab/frostfs-node/pkg/util/locode/db"
"github.com/paulmach/orb"
"github.com/paulmach/orb/geojson"
"github.com/paulmach/orb/planar"

View file

@ -3,7 +3,7 @@ package locodedb
import (
"fmt"
locodecolumn "github.com/nspcc-dev/neofs-node/pkg/util/locode/column"
locodecolumn "github.com/TrueCloudLab/frostfs-node/pkg/util/locode/column"
)
// CountryCode represents a country code for

View file

@ -4,7 +4,7 @@ import (
"errors"
"fmt"
"github.com/nspcc-dev/neofs-node/pkg/util/locode"
"github.com/TrueCloudLab/frostfs-node/pkg/util/locode"
)
// SourceTable is an interface of the UN/LOCODE table.

View file

@ -3,7 +3,7 @@ package locodedb
import (
"fmt"
locodecolumn "github.com/nspcc-dev/neofs-node/pkg/util/locode/column"
locodecolumn "github.com/TrueCloudLab/frostfs-node/pkg/util/locode/column"
)
// LocationCode represents a location code for

View file

@ -4,7 +4,7 @@ import (
"fmt"
"strconv"
locodecolumn "github.com/nspcc-dev/neofs-node/pkg/util/locode/column"
locodecolumn "github.com/TrueCloudLab/frostfs-node/pkg/util/locode/column"
)
// Point represents a 2D geographic point.

View file

@ -3,7 +3,7 @@ package locodedb
import (
"testing"
locodecolumn "github.com/nspcc-dev/neofs-node/pkg/util/locode/column"
locodecolumn "github.com/TrueCloudLab/frostfs-node/pkg/util/locode/column"
"github.com/stretchr/testify/require"
)

View file

@ -4,8 +4,8 @@ import (
"errors"
"fmt"
"github.com/nspcc-dev/neofs-node/pkg/util/locode"
locodecolumn "github.com/nspcc-dev/neofs-node/pkg/util/locode/column"
"github.com/TrueCloudLab/frostfs-node/pkg/util/locode"
locodecolumn "github.com/TrueCloudLab/frostfs-node/pkg/util/locode/column"
)
// Key represents the key in NeoFS location database.

View file

@ -7,8 +7,8 @@ import (
"os"
"strings"
"github.com/nspcc-dev/neofs-node/pkg/util/locode"
locodedb "github.com/nspcc-dev/neofs-node/pkg/util/locode/db"
"github.com/TrueCloudLab/frostfs-node/pkg/util/locode"
locodedb "github.com/TrueCloudLab/frostfs-node/pkg/util/locode/db"
)
var errInvalidRecord = errors.New("invalid table record")