diff options
Diffstat (limited to 'events/init.go')
-rw-r--r-- | events/init.go | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/events/init.go b/events/init.go deleted file mode 100644 index 25e92fc5..00000000 --- a/events/init.go +++ /dev/null @@ -1,20 +0,0 @@ -package events - -import ( - "sync" - - "github.com/google/uuid" -) - -var evBus *eventsBus -var onInit = &sync.Once{} - -func Bus() (*eventsBus, string) { - onInit.Do(func() { - evBus = newEventsBus() - go evBus.handleEvents() - }) - - // return events bus with subscriberID - return evBus, uuid.NewString() -} |