EtherGuard-VPN/device/sticky_default.go
2021-08-16 19:36:46 +00:00

13 lines
244 B
Go

// +build !linux
package device
import (
"github.com/KusakabeSi/EtherGuardVPN/conn"
"github.com/KusakabeSi/EtherGuardVPN/rwcancel"
)
func (device *Device) startRouteListener(bind conn.Bind) (*rwcancel.RWCancel, error) {
return nil, nil
}