2023-07-10 16:01:48 +01:00
|
|
|
// 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.
|
2023-07-10 16:48:33 +01:00
|
|
|
var EuCountries = location.NewSet(
|
2023-07-10 16:01:48 +01:00
|
|
|
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,
|
2023-07-10 16:48:33 +01:00
|
|
|
)
|
2023-07-10 16:01:48 +01:00
|
|
|
|
|
|
|
// EeaCountries defined the EEA countries.
|
2023-07-10 16:48:33 +01:00
|
|
|
var EeaCountries = EuCountries.With(
|
2023-07-10 16:01:48 +01:00
|
|
|
location.Iceland,
|
|
|
|
location.Liechtenstein,
|
|
|
|
location.Norway,
|
|
|
|
)
|