Files
Reticulum-Go/pkg/announce/handler.go

8 lines
190 B
Go

package announce
type Handler interface {
AspectFilter() []string
ReceivedAnnounce(destHash []byte, identity interface{}, appData []byte, hops uint8) error
ReceivePathResponses() bool
}