From b1cd86be36428f4bd5f3ea33f4d20c53195cdb0a Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Wed, 17 Apr 2024 08:55:54 +0800 Subject: [PATCH] 1 --- server/mailserver/mail/mailmgr.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/server/mailserver/mail/mailmgr.go b/server/mailserver/mail/mailmgr.go index 282c8f1e..68c52cb5 100644 --- a/server/mailserver/mail/mailmgr.go +++ b/server/mailserver/mail/mailmgr.go @@ -16,11 +16,11 @@ type userGroup struct { } type mailMgr struct { - idHash sync.Map - wholeMails sync.Map - groupMails sync.Map - personalMails sync.Map - groupHash sync.Map + idHash sync.Map //int64 => *mail + wholeMails sync.Map //int64 => *mail + groupMails sync.Map //int64 => *mail + personalMails sync.Map //string => sync.Map + groupHash sync.Map //int64 => *userGroup } func (this *mailMgr) Init() {