searcher_stub.go 153 B

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