mirror of
https://github.com/amnezia-vpn/amnezia-tun2socks.git
synced 2026-05-17 08:15:46 +03:00
12 lines
202 B
Go
12 lines
202 B
Go
package fdbased
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/amnezia-vpn/amnezia-tun2socks/v2/core/device"
|
|
)
|
|
|
|
func Open(name string, mtu uint32) (device.Device, error) {
|
|
return nil, errors.New("not supported")
|
|
}
|