mirror of
https://github.com/netbirdio/management-refactor.git
synced 2026-05-22 17:12:59 -07:00
8 lines
143 B
Go
8 lines
143 B
Go
package network_map
|
|
|
|
import "context"
|
|
|
|
type UpdateChannel interface {
|
|
SendUpdate(ctx context.Context, peerID string, update *UpdateMessage)
|
|
}
|