mirror of
https://github.com/henrygd/beszel.git
synced 2026-06-17 19:09:32 +03:00
6f5d95031c
- move agent to /agent - change /beszel to /src - update workflows and docker builds
14 lines
189 B
Go
14 lines
189 B
Go
//go:build freebsd
|
|
|
|
package battery
|
|
|
|
import "errors"
|
|
|
|
func HasReadableBattery() bool {
|
|
return false
|
|
}
|
|
|
|
func GetBatteryStats() (uint8, uint8, error) {
|
|
return 0, 0, errors.ErrUnsupported
|
|
}
|