github.com/igoogolx/clash@v1.19.8/component/process/process_other.go (about)

     1  //go:build !darwin && !linux && !windows && !freebsd
     2  
     3  package process
     4  
     5  import (
     6  	"net/netip"
     7  )
     8  
     9  func findProcessPath(_ string, _, _ netip.AddrPort) (string, error) {
    10  	return "", ErrPlatformNotSupport
    11  }