summaryrefslogtreecommitdiffhomepage
path: root/internal/pubsub
diff options
context:
space:
mode:
Diffstat (limited to 'internal/pubsub')
-rw-r--r--internal/pubsub/broker.go7
1 files changed, 0 insertions, 7 deletions
diff --git a/internal/pubsub/broker.go b/internal/pubsub/broker.go
index 3e70ae095..d73accffb 100644
--- a/internal/pubsub/broker.go
+++ b/internal/pubsub/broker.go
@@ -7,13 +7,6 @@ import (
const bufferSize = 1024
-type Logger interface {
- Debug(msg string, args ...any)
- Info(msg string, args ...any)
- Warn(msg string, args ...any)
- Error(msg string, args ...any)
-}
-
// Broker allows clients to publish events and subscribe to events
type Broker[T any] struct {
subs map[chan Event[T]]struct{} // subscriptions