mirror of
https://github.com/henrygd/beszel.git
synced 2026-09-21 08:57:48 +02:00
12 lines
174 B
Go
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 "" }
|