-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcountries.go
63 lines (61 loc) · 1.33 KB
/
countries.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package vies
const (
Austria = "AT"
Belgium = "BE"
Bulgaria = "BG"
Cyprus = "CY"
Czechia = "CZ"
Germany = "DE"
Denmark = "DK"
Estonia = "EE"
Greece = "EL"
Spain = "ES"
Finland = "FI"
France = "FR"
Croatia = "HR"
Hungary = "HU"
Ireland = "IE"
Italy = "IT"
Lithuania = "LT"
Luxembourg = "LU"
Latvia = "LV"
Malta = "MT"
TheNetherlands = "NL"
Poland = "PL"
Portugal = "PT"
Romania = "RO"
Sweden = "SE"
Slovenia = "SI"
Slovakia = "SK"
NorthernIreland = "XI"
)
var validCountries = map[string]struct{}{
Austria: {},
Belgium: {},
Bulgaria: {},
Cyprus: {},
Czechia: {},
Germany: {},
Denmark: {},
Estonia: {},
Greece: {},
Spain: {},
Finland: {},
France: {},
Croatia: {},
Hungary: {},
Ireland: {},
Italy: {},
Lithuania: {},
Luxembourg: {},
Latvia: {},
Malta: {},
TheNetherlands: {},
Poland: {},
Portugal: {},
Romania: {},
Sweden: {},
Slovenia: {},
Slovakia: {},
NorthernIreland: {},
}