10 lines
124 B
Go
10 lines
124 B
Go
package relayer
|
|
|
|
import (
|
|
"github.com/nbd-wtf/go-nostr"
|
|
)
|
|
|
|
func BroadcastEvent(evt *nostr.Event) {
|
|
notifyListeners(evt)
|
|
}
|