mirror of
https://github.com/moby/moby.git
synced 2026-07-15 20:12:07 +00:00
9 lines
196 B
Go
9 lines
196 B
Go
// +build !linux,!windows
|
|
|
|
package system
|
|
|
|
// ReadMemInfo is not supported on platforms other than linux and windows.
|
|
func ReadMemInfo() (*MemInfo, error) {
|
|
return nil, ErrNotSupportedPlatform
|
|
}
|