mirror of
https://github.com/muesli/duf.git
synced 2025-04-19 07:42:16 +03:00
23 lines
299 B
Go
23 lines
299 B
Go
//go:build darwin
|
|
// +build darwin
|
|
|
|
package main
|
|
|
|
func isFuseFs(m Mount) bool {
|
|
//FIXME: implement
|
|
return false
|
|
}
|
|
|
|
func isNetworkFs(m Mount) bool {
|
|
//FIXME: implement
|
|
return false
|
|
}
|
|
|
|
func isSpecialFs(m Mount) bool {
|
|
return m.Fstype == "devfs"
|
|
}
|
|
|
|
func isHiddenFs(m Mount) bool {
|
|
return false
|
|
}
|