mirror of
https://github.com/moby/moby.git
synced 2025-12-10 21:42:47 +03:00
MemInfo provides a simple API to get memory information from the system. Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
8 lines
112 B
Go
8 lines
112 B
Go
// +build !linux
|
|
|
|
package system
|
|
|
|
func ReadMemInfo() (*MemInfo, error) {
|
|
return nil, ErrNotSupportedPlatform
|
|
}
|