mirror of
https://github.com/docker/docs.git
synced 2026-04-03 09:49:05 +07: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
|
|
}
|