github.com/apernet/sing-tun@v0.2.6-0.20240323130332-b9f6511036ad/tun_other.go (about) 1 //go:build !(linux || windows || darwin) 2 3 package tun 4 5 import ( 6 "os" 7 ) 8 9 func New(config Options) (Tun, error) { 10 return nil, os.ErrInvalid 11 }