github.com/MerlinKodo/sing-tun@v0.1.15/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 }