diff --git a/broadcasting.go b/broadcasting.go new file mode 100644 index 0000000..5c2e9dd --- /dev/null +++ b/broadcasting.go @@ -0,0 +1,9 @@ +package relayer + +import ( + "github.com/nbd-wtf/go-nostr" +) + +func BroadcastEvent(evt *nostr.Event) { + notifyListeners(evt) +}