github.com/sagernet/sing-box@v1.9.0-rc.20/common/process/searcher_stub.go (about)

     1  //go:build !linux && !windows && !darwin
     2  
     3  package process
     4  
     5  import (
     6  	"os"
     7  )
     8  
     9  func NewSearcher(_ Config) (Searcher, error) {
    10  	return nil, os.ErrInvalid
    11  }