mirror of
https://github.com/warmbly/warmbly.git
synced 2026-08-25 08:00:37 +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)
|
|
}
|