mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2025-12-31 01:59:39 -05:00
Bumps [github.com/KimMachineGun/automemlimit](https://github.com/KimMachineGun/automemlimit) from 0.4.0 to 0.5.0. - [Commits](https://github.com/KimMachineGun/automemlimit/compare/v0.4.0...v0.5.0) --- updated-dependencies: - dependency-name: github.com/KimMachineGun/automemlimit dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
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
|
|
}
|