-
Notifications
You must be signed in to change notification settings - Fork 3
/
countries.go
43 lines (40 loc) · 848 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
33
34
35
36
37
38
39
40
41
42
43
/*
* CODE GENERATED AUTOMATICALLY WITH github.com/khasanovbi/banksdb/internal/gen
* THIS FILE MUST NOT BE EDITED BY HAND
*/
package banksdb
// Country represent country code.
type Country string
// Following constants represent country codes of known banks in db.
const (
AR Country = "ar"
AU Country = "au"
BE Country = "be"
BY Country = "by"
CA Country = "ca"
CN Country = "cn"
CY Country = "cy"
CZ Country = "cz"
DE Country = "de"
DK Country = "dk"
FI Country = "fi"
FR Country = "fr"
GB Country = "gb"
IE Country = "ie"
IN Country = "in"
IR Country = "ir"
KG Country = "kg"
KZ Country = "kz"
NL Country = "nl"
NZ Country = "nz"
PL Country = "pl"
PT Country = "pt"
RS Country = "rs"
RU Country = "ru"
TR Country = "tr"
TW Country = "tw"
UA Country = "ua"
US Country = "us"
UY Country = "uy"
ZA Country = "za"
)