465941b345
location.Set is faster for comparisons. Updates #6028 Change-Id: I764eb5cafc507f908e4168b16a7994cc7721ce4d
45 lines
903 B
Go
45 lines
903 B
Go
// Copyright (C) 2023 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package nodeselection
|
|
|
|
import "storj.io/common/storj/location"
|
|
|
|
// EuCountries defines the member countries of European Union.
|
|
var EuCountries = location.NewSet(
|
|
location.Austria,
|
|
location.Belgium,
|
|
location.Bulgaria,
|
|
location.Croatia,
|
|
location.Cyprus,
|
|
location.Czechia,
|
|
location.Denmark,
|
|
location.Estonia,
|
|
location.Finland,
|
|
location.France,
|
|
location.Germany,
|
|
location.Greece,
|
|
location.Hungary,
|
|
location.Ireland,
|
|
location.Italy,
|
|
location.Lithuania,
|
|
location.Latvia,
|
|
location.Luxembourg,
|
|
location.Malta,
|
|
location.Netherlands,
|
|
location.Poland,
|
|
location.Portugal,
|
|
location.Romania,
|
|
location.Slovenia,
|
|
location.Slovakia,
|
|
location.Spain,
|
|
location.Sweden,
|
|
)
|
|
|
|
// EeaCountries defined the EEA countries.
|
|
var EeaCountries = EuCountries.With(
|
|
location.Iceland,
|
|
location.Liechtenstein,
|
|
location.Norway,
|
|
)
|