mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2025-12-19 16:30:07 +08:00
8 lines
177 B
Go
8 lines
177 B
Go
//go:build !darwin && !linux && !freebsd && !openbsd && !windows
|
|
|
|
package memory
|
|
|
|
func GetMemoryInfo(pid int32) (*MemoryInfoStat, error) {
|
|
return nil, ErrNotImplementedError
|
|
}
|