1
0
mirror of https://github.com/kataras/iris.git synced 2026-07-31 08:29:50 +00:00

update dependencies

This commit is contained in:
Gerasimos (Makis) Maropoulos
2025-08-15 23:29:20 +03:00
parent de4f462198
commit a8a3afea22
186 changed files with 694 additions and 689 deletions
+1 -1
View File
@@ -160,7 +160,7 @@ func (loc *Locale) Language() string {
}
// GetMessage should return translated text based on the given "key".
func (loc *Locale) GetMessage(key string, args ...interface{}) string {
func (loc *Locale) GetMessage(key string, args ...any) string {
if msg, ok := loc.Messages[key]; ok {
result, err := msg.Render(args...)
if err != nil {