Add EU as possible contry code for vendor

Signed-off-by: Bryan Frimin <bryan@getprobo.com>
This commit is contained in:
Bryan Frimin
2025-10-14 11:55:42 +02:00
parent 09281bce72
commit f26989c2fe
13 changed files with 25 additions and 17 deletions

View File

@@ -94,6 +94,7 @@ const (
CountryCodeER CountryCode = "ER"
CountryCodeES CountryCode = "ES"
CountryCodeET CountryCode = "ET"
CountryCodeEU CountryCode = "EU"
CountryCodeFI CountryCode = "FI"
CountryCodeFJ CountryCode = "FJ"
CountryCodeFK CountryCode = "FK"
@@ -429,6 +430,8 @@ func (ct *CountryCode) Scan(value any) error {
*ct = CountryCodeES
case CountryCodeET.String():
*ct = CountryCodeET
case CountryCodeEU.String():
*ct = CountryCodeEU
case CountryCodeFI.String():
*ct = CountryCodeFI
case CountryCodeFJ.String():