github.com/inazumav/sing-box@v0.0.0-20230926072359-ab51429a14f1/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 }