mirror of
https://github.com/henrygd/beszel.git
synced 2026-09-21 17:07:47 +02:00
10 lines
194 B
Go
10 lines
194 B
Go
//go:build !linux
|
|
|
|
package zfs
|
|
|
|
// The /dev/zfs probe is Linux-specific. Other platforms detect availability
|
|
// through the ZFS utilities themselves.
|
|
func checkZfsDevice() error {
|
|
return nil
|
|
}
|