github.com/metacubex/sing-tun@v0.2.7-0.20240512075008-89e7c6208eec/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 }