This repository has been archived on 2024-09-06. You can view files and clone it, but cannot push or open issues or pull requests.
clash/component/process/process_other.go
2023-06-13 23:25:32 +08:00

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
}