diff --git a/event/bus.go b/event/bus.go index 028bde7..9dcf937 100644 --- a/event/bus.go +++ b/event/bus.go @@ -19,7 +19,7 @@ type Emitter interface { // calls to Emit will block. // // Calling this function with wrong event type will cause a panic. - Emit(evt interface{}) + Emit(evt interface{}) error } // Subscription represents a subscription to one or multiple event types.