MemInfo provides a simple API to get memory information from the system. Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com> Upstream-commit: e0c9d7b654221a0d4e5a310b0f9a0adb9ef69aa0 Component: engine
8 lines
112 B
Go
8 lines
112 B
Go
// +build !linux
|
|
|
|
package system
|
|
|
|
func ReadMemInfo() (*MemInfo, error) {
|
|
return nil, ErrNotSupportedPlatform
|
|
}
|