Remove deadlock specific code

This commit is contained in:
Dane Everitt
2020-09-11 23:03:35 -07:00
parent b2eebcaf6d
commit 8bcb3d7c62
3 changed files with 2 additions and 8 deletions

View File

@@ -2,8 +2,8 @@ package events
import (
"encoding/json"
"github.com/sasha-s/go-deadlock"
"strings"
"sync"
)
type Event struct {
@@ -12,7 +12,7 @@ type Event struct {
}
type EventBus struct {
deadlock.RWMutex
sync.RWMutex
subscribers map[string]map[chan Event]struct{}
}