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