mirror of
https://github.com/henrygd/beszel.git
synced 2026-03-22 05:36:15 +01:00
10 lines
129 B
Go
10 lines
129 B
Go
//go:build !linux && !freebsd
|
|
|
|
package zfs
|
|
|
|
import "errors"
|
|
|
|
func ARCSize() (uint64, error) {
|
|
return 0, errors.ErrUnsupported
|
|
}
|