12345678910 |
- //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")
- }
|