ab35df454d
Removed pre-go1.17 build-tags with go fix; go mod init go fix -mod=readonly ./... rm go.mod Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
10 lines
250 B
Go
10 lines
250 B
Go
//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")
|
|
}
|