mirror of
https://github.com/henrygd/beszel.git
synced 2026-08-18 08:17:47 +02:00
14 lines
207 B
Go
14 lines
207 B
Go
//go:build !darwin && !linux && !windows
|
|
|
|
package battery
|
|
|
|
import "errors"
|
|
|
|
func HasReadableBattery() bool {
|
|
return false
|
|
}
|
|
|
|
func GetBatteryStats() ([]Battery, error) {
|
|
return nil, errors.ErrUnsupported
|
|
}
|