github.com/sagernet/sing-tun@v0.3.0-beta.5/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  }