add Broadcast

This commit is contained in:
Yasuhiro Matsumoto
2024-07-31 23:23:30 +09:00
parent 274bdf0c81
commit d6a7f5ef2d

9
broadcasting.go Normal file
View File

@@ -0,0 +1,9 @@
package relayer
import (
"github.com/nbd-wtf/go-nostr"
)
func BroadcastEvent(evt *nostr.Event) {
notifyListeners(evt)
}