This commit is contained in:
aozhiwei 2024-04-17 08:55:54 +08:00
parent 69bb3fc403
commit b1cd86be36

View File

@ -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<int64, *mail>
groupHash sync.Map //int64 => *userGroup
}
func (this *mailMgr) Init() {