mirror of
https://github.com/amnezia-vpn/euphoria.git
synced 2026-05-17 07:35:44 +03:00
13 lines
237 B
Go
13 lines
237 B
Go
//go:build !linux
|
|
|
|
package device
|
|
|
|
import (
|
|
"github.com/amnezia-vpn/euphoria/conn"
|
|
"github.com/amnezia-vpn/euphoria/rwcancel"
|
|
)
|
|
|
|
func (device *Device) startRouteListener(bind conn.Bind) (*rwcancel.RWCancel, error) {
|
|
return nil, nil
|
|
}
|