mirror of
https://github.com/luxfi/metric.git
synced 2026-07-27 04:12:44 +00:00
15 lines
279 B
Go
15 lines
279 B
Go
// Copyright (C) 2020-2026, Lux Industries Inc. All rights reserved.
|
|
// See the file LICENSE for licensing terms.
|
|
|
|
//go:build windows
|
|
|
|
package metric
|
|
|
|
func processCPUSeconds() (float64, bool) {
|
|
return 0, false
|
|
}
|
|
|
|
func processResidentBytes() (float64, bool) {
|
|
return 0, false
|
|
}
|