8 lines
112 B
Go
8 lines
112 B
Go
|
// +build !linux
|
||
|
|
||
|
package system
|
||
|
|
||
|
func ReadMemInfo() (*MemInfo, error) {
|
||
|
return nil, ErrNotSupportedPlatform
|
||
|
}
|