Uniformize enum style

Signed-off-by: Bryan Frimin <bryan@probo.com>
This commit is contained in:
Bryan Frimin
2026-05-20 09:41:22 -07:00
parent bc6d028ef3
commit 30db98455d
191 changed files with 7946 additions and 5129 deletions

View File

@@ -54,7 +54,7 @@ func (s *Service) ImportFromDir(ctx context.Context, dataDir string) error {
code := strings.ToUpper(entry.Name())
var cc coredata.CountryCode
if err := cc.Scan(code); err != nil {
if err := cc.UnmarshalText([]byte(code)); err != nil {
continue
}