mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-11 02:35:18 +00:00
15 lines
385 B
Go
15 lines
385 B
Go
package p2p
|
|
|
|
import (
|
|
"source.quilibrium.com/quilibrium/monorepo/go-libp2p-blossomsub/pb"
|
|
)
|
|
|
|
type PubSub interface {
|
|
PublishToBitmask(bitmask []byte, data []byte) error
|
|
Publish(data []byte) error
|
|
Subscribe(bitmask []byte, handler func(message *pb.Message) error, raw bool)
|
|
Unsubscribe(bitmask []byte, raw bool)
|
|
GetPeerID() []byte
|
|
GetRandomPeer(bitmask []byte) ([]byte, error)
|
|
}
|