mirror of
https://github.com/henrygd/beszel.git
synced 2026-03-21 21:26:16 +01:00
12 lines
195 B
Go
12 lines
195 B
Go
//go:build !linux
|
|
|
|
package agent
|
|
|
|
func scanMdraidDevices() []*DeviceInfo {
|
|
return nil
|
|
}
|
|
|
|
func (sm *SmartManager) collectMdraidHealth(deviceInfo *DeviceInfo) (bool, error) {
|
|
return false, nil
|
|
}
|