mirror of
https://github.com/photoprism/photoprism.git
synced 2026-01-23 02:24:24 +00:00
21 lines
281 B
Go
21 lines
281 B
Go
//go:build darwin
|
|
|
|
package duf
|
|
|
|
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
|
|
}
|