mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-07-16 04:03:47 +03: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
|
||
|
|
}
|