mirror of
https://github.com/henrygd/beszel.git
synced 2026-04-06 13:01:49 +02:00
14 lines
211 B
Go
14 lines
211 B
Go
//go:build !darwin && !linux && !windows
|
|
|
|
package battery
|
|
|
|
import "errors"
|
|
|
|
func HasReadableBattery() bool {
|
|
return false
|
|
}
|
|
|
|
func GetBatteryStats() (uint8, uint8, error) {
|
|
return 0, 0, errors.ErrUnsupported
|
|
}
|