mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2025-12-20 09:00:04 +08:00
12 lines
258 B
Go
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
|
|
}
|