mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2026-05-06 22:12:23 +08:00
17 lines
378 B
Go
17 lines
378 B
Go
//go:build windows
|
|
|
|
package backup
|
|
|
|
// isDeviceDifferent always returns false on Windows
|
|
// Windows mount points work differently and are not a concern for this use case
|
|
func isDeviceDifferent(path string) bool {
|
|
return false
|
|
}
|
|
|
|
// isInMountTable always returns false on Windows
|
|
// /proc/mounts doesn't exist on Windows
|
|
func isInMountTable(path string) bool {
|
|
return false
|
|
}
|
|
|