mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-20 09:16:40 +00:00
14 lines
194 B
Go
14 lines
194 B
Go
package lazyconn
|
|
|
|
import (
|
|
"net/netip"
|
|
|
|
"github.com/netbirdio/netbird/client/internal/peer"
|
|
)
|
|
|
|
type PeerConfig struct {
|
|
PublicKey string
|
|
AllowedIPs []netip.Prefix
|
|
PeerConnID peer.ConnID
|
|
}
|