mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-12 00:34:13 +01:00
22 lines
282 B
Go
22 lines
282 B
Go
//go:build openbsd
|
|
|
|
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
|
|
}
|