mirror of
https://github.com/dunglas/frankenphp.git
synced 2025-12-24 13:38:11 +08:00
9 lines
154 B
Go
9 lines
154 B
Go
//go:build !linux
|
|
|
|
package memory
|
|
|
|
// TotalSysMemory returns 0 if the total system memory cannot be determined
|
|
func TotalSysMemory() uint64 {
|
|
return 0
|
|
}
|