-
Notifications
You must be signed in to change notification settings - Fork 293
/
countries.go
32 lines (31 loc) · 974 Bytes
/
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
package spotify
// ISO 3166-1 alpha 2 country codes.
//
// see: https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
const (
CountryArgentina = "AR"
CountryAustralia = "AU"
CountryAustria = "AT"
CountryBelarus = "BY"
CountryBelgium = "BE"
CountryBrazil = "BR"
CountryCanada = "CA"
CountryChile = "CL"
CountryChina = "CN"
CountryGermany = "DE"
CountryHongKong = "HK"
CountryIreland = "IE"
CountryIndia = "IN"
CountryItaly = "IT"
CountryJapan = "JP"
CountrySpain = "ES"
CountryFinland = "FI"
CountryFrance = "FR"
CountryMexico = "MX"
CountryNewZealand = "NZ"
CountryRussia = "RU"
CountrySwitzerland = "CH"
CountryUnitedArabEmirates = "AE"
CountryUnitedKingdom = "GB"
CountryUSA = "US"
)