mirror of
https://github.com/logos-messaging/logos-messaging-go.git
synced 2026-01-09 09:23:07 +00:00
10 lines
237 B
Go
10 lines
237 B
Go
package publish
|
|
|
|
import (
|
|
"github.com/waku-org/go-waku/waku/v2/protocol"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
// PublishFn represents a function that will publish a message.
|
|
type PublishFn = func(envelope *protocol.Envelope, logger *zap.Logger) error
|