Files
beszel-ipv6/agent/battery/battery.go
2026-04-02 21:07:14 -04:00

12 lines
226 B
Go

// Package battery provides functions to check if the system has a battery and to get the battery stats.
package battery
const (
stateUnknown uint8 = iota
stateEmpty
stateFull
stateCharging
stateDischarging
stateIdle
)