Update az generator 'users' list

This commit is contained in:
2025-05-28 19:12:13 +04:00
parent b9633e84da
commit 56ec1a39a0
2 changed files with 2 additions and 1 deletions

View File

@@ -77,7 +77,7 @@ type Langs map[string]bool
//
// Returns:
// - bool: true if at least one language code from the input slice exists in the map,
// false if none of the provided language codes exist
// false if none of the provided language codes exist
func (l Langs) IsExistsAny(langs []string) bool {
for _, lang := range langs {
if _, ok := l[lang]; ok {