From e09f88ee5bdd6934a626b8763543ceace84fe7ea Mon Sep 17 00:00:00 2001 From: Achim Rohn Date: Wed, 13 Aug 2025 10:29:31 +0200 Subject: [PATCH] Add an index route --- i18n.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/i18n.go b/i18n.go index 8775641..4795698 100644 --- a/i18n.go +++ b/i18n.go @@ -14,7 +14,7 @@ type GlobalI18nTexts interface { GetAllTexts() []I18nText } -var GlobalI18n GlobalI18nTexts +var GlobalI18n GlobalI18nTexts = GlobalI18nImplementation{i18nTexts: make(map[string]I18nText)} type GlobalI18nImplementation struct { i18nTexts map[string]I18nText