mihomo/component/memory/memory_falllback.go
2025-09-24 02:35:04 +08:00

8 lines
177 B
Go

//go:build !darwin && !linux && !freebsd && !openbsd && !windows
package memory
func GetMemoryInfo(pid int32) (*MemoryInfoStat, error) {
return nil, ErrNotImplementedError
}