mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-13 04:51:13 +00:00
10 lines
173 B
Go
10 lines
173 B
Go
// +build !linux,!darwin,!windows,!freebsd,!dragonfly,!netbsd,!openbsd
|
|
|
|
package memory
|
|
|
|
func sysTotalMemory() uint64 {
|
|
return 0
|
|
}
|
|
func sysFreeMemory() uint64 {
|
|
return 0
|
|
}
|