Fix lint and test issues

This commit is contained in:
Viktor Liu
2024-12-31 14:19:15 +01:00
parent 9feaa8d767
commit fb1a10755a
11 changed files with 64 additions and 52 deletions

View File

@@ -1,6 +1,8 @@
package iface
import (
wgdevice "golang.zx2c4.com/wireguard/device"
"github.com/netbirdio/netbird/client/iface/bind"
"github.com/netbirdio/netbird/client/iface/device"
)
@@ -13,4 +15,5 @@ type WGTunDevice interface {
DeviceName() string
Close() error
FilteredDevice() *device.FilteredDevice
Device() *wgdevice.Device
}