mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-03-24 17:35:06 +00:00
9 lines
256 B
Go
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
|
|
}
|