Files
beszel/agent/btrfs/btrfs_unsupported.go
T

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 "" }