mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 06:12:55 +00:00
11 lines
173 B
Go
11 lines
173 B
Go
// +build !linux,!darwin,!windows,!freebsd,!dragonfly,!netbsd,!openbsd
|
|
|
|
package memory
|
|
|
|
func sysTotalMemory() uint64 {
|
|
return 0
|
|
}
|
|
func sysFreeMemory() uint64 {
|
|
return 0
|
|
}
|