Files
beszel-ipv6/agent/btrfs/btrfs_unsupported.go
2026-09-09 19:53:39 -04:00

12 lines
174 B
Go

//go:build !linux
package btrfs
import "errors"
func Filesystems() ([]Filesystem, error) {
return nil, errors.ErrUnsupported
}
func MountID(string) string { return "" }