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

12 lines
258 B
Go

//go:build !darwin && !linux && !freebsd && !openbsd && !windows
package memory
import "errors"
var ErrNotImplementedError = errors.New("not implemented yet")
func GetMemoryInfo(pid int32) (*MemoryInfoStat, error) {
return nil, ErrNotImplementedError
}