1
0
mirror of https://github.com/pocket-id/pocket-id.git synced 2026-03-24 17:35:06 +00:00
Files
pocket-id/backend/internal/utils/networked_filesystem_nonlinux.go
2026-03-23 12:50:54 -05:00

9 lines
256 B
Go

//go:build !linux
package utils
// IsNetworkedFileSystem returns false on non-Linux systems because this detection is only used for Linux-specific statfs(2) filesystem magic values.
func IsNetworkedFileSystem(string) (bool, error) {
return false, nil
}