mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 15:00:00 +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
|
||
|
}
|