12 lines
148 B
Go
12 lines
148 B
Go
//go:build !linux && !windows
|
|
|
|
package handlers
|
|
|
|
func getSysMemMb() (total, free int64) {
|
|
return 0, 0
|
|
}
|
|
|
|
func getOSRelease() string {
|
|
return ""
|
|
}
|