mirror of
https://github.com/warmbly/warmbly.git
synced 2026-08-20 00:01:21 +00:00
11 lines
155 B
Go
11 lines
155 B
Go
package mailmanager
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
func (m *MailManager) Terminate(id uuid.UUID) {
|
|
m.Lock()
|
|
defer m.Unlock()
|
|
|
|
delete(m.Emails, id)
|
|
}
|