blob: 3d03441c12e4ea1bc2ff2eb953c0ed333af11563 [file] [edit]
//go:build !linux && !windows
package meminfo
import "errors"
// readMemInfo is not supported on platforms other than linux and windows.
func readMemInfo() (*Memory, error) {
return nil, errors.New("platform and architecture is not supported")
}