Files
mengyamonitor/mengyamonitor-backend/systeminfo_other.go
2025-12-14 15:25:31 +08:00

15 lines
315 B
Go

//go:build !linux
// +build !linux
package main
import "errors"
func readStorage() ([]StorageMetrics, error) {
return nil, errors.New("storage monitoring is only supported on Linux")
}
func readAllStorage() ([]StorageMetrics, error) {
return nil, errors.New("storage monitoring is only supported on Linux")
}