//go:build !linux package storage import ( "fmt" "log" ) // ScanDisks is not supported on non-Linux platforms. func ScanDisks(logger *log.Logger, debug bool) (*ScanResult, error) { return nil, fmt.Errorf("storage init is only supported on Linux") }