mirror of
https://github.com/shtorm-7/sing-box-extended.git
synced 2026-09-15 21:00:27 +00:00
16 lines
278 B
Go
16 lines
278 B
Go
//go:build !darwin && !linux && !windows
|
|
|
|
package powerreport
|
|
|
|
func readSystemUsage() systemUsage {
|
|
return systemUsage{}
|
|
}
|
|
|
|
func readClocks() (absoluteTime int64, continuousTime int64) {
|
|
return 0, 0
|
|
}
|
|
|
|
func readInterfaceCounters() map[string]interfaceCounters {
|
|
return nil
|
|
}
|