12 lines
202 B
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
|
|
}
|