clash/component/process/process_other.go

12 lines
202 B
Go

//go:build !darwin && !linux && !windows && !freebsd
package process
import (
"net/netip"
)
func findProcessPath(_ string, _, _ netip.AddrPort) (string, error) {
return "", ErrPlatformNotSupport
}