Reticulum-Go/pkg/announce/handler.go
2026-07-13 08:56:23 -05:00

10 lines
258 B
Go

// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2024-2026 Quad4.io
package announce
type Handler interface {
AspectFilter() []string
ReceivedAnnounce(destHash []byte, identity any, appData []byte, hops uint8) error
ReceivePathResponses() bool
}