Update az generator 'users' list

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

View File

@ -31,6 +31,7 @@ var Users = generator.Users{
"did:plc:w5gg2zgwcyfevphehdcmavev": false, "did:plc:w5gg2zgwcyfevphehdcmavev": false,
"did:plc:ckawbibgmrwg3lbskfppwtlw": false, "did:plc:ckawbibgmrwg3lbskfppwtlw": false,
"did:plc:43fdk46qa5gsokzygzildsaq": false, "did:plc:43fdk46qa5gsokzygzildsaq": false,
"did:plc:3szm5t3tknphjtj73twqfonw": false,
// Valid // Valid
"did:plc:jbt4qi6psd7rutwzedtecsq7": true, "did:plc:jbt4qi6psd7rutwzedtecsq7": true,

View File

@ -77,7 +77,7 @@ type Langs map[string]bool
// //
// Returns: // Returns:
// - bool: true if at least one language code from the input slice exists in the map, // - 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 { func (l Langs) IsExistsAny(langs []string) bool {
for _, lang := range langs { for _, lang := range langs {
if _, ok := l[lang]; ok { if _, ok := l[lang]; ok {