Files
relayer/broadcasting.go
Yasuhiro Matsumoto d6a7f5ef2d add Broadcast
2024-07-31 23:23:30 +09:00

10 lines
124 B
Go

package relayer
import (
"github.com/nbd-wtf/go-nostr"
)
func BroadcastEvent(evt *nostr.Event) {
notifyListeners(evt)
}