sing-tun/tun_other.go
2022-08-15 09:46:58 +08:00

11 lines
143 B
Go

//go:build !(linux || windows || darwin)
package tun
import (
"os"
)
func Open(config Options) (Tun, error) {
return nil, os.ErrInvalid
}