mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-24 11:16:38 +00:00
13 lines
154 B
Go
13 lines
154 B
Go
package lazyconn
|
|
|
|
import (
|
|
"net"
|
|
|
|
"golang.zx2c4.com/wireguard/wgctrl/wgtypes"
|
|
)
|
|
|
|
type PeerConfig struct {
|
|
PublicKey wgtypes.Key
|
|
AllowedIP net.IPNet
|
|
}
|