mirror of
https://github.com/Dvorinka/beszel.git
synced 2026-06-03 21:02:56 +00:00
15 lines
254 B
Go
15 lines
254 B
Go
//go:build !linux
|
|
|
|
package agent
|
|
|
|
// Non-Linux builds: eMMC health via sysfs is not available.
|
|
|
|
func scanEmmcDevices() []*DeviceInfo {
|
|
return nil
|
|
}
|
|
|
|
func (sm *SmartManager) collectEmmcHealth(deviceInfo *DeviceInfo) (bool, error) {
|
|
return false, nil
|
|
}
|
|
|