restore_windows.go 378 B

12345678910111213141516
  1. //go:build windows
  2. package backup
  3. // isDeviceDifferent always returns false on Windows
  4. // Windows mount points work differently and are not a concern for this use case
  5. func isDeviceDifferent(path string) bool {
  6. return false
  7. }
  8. // isInMountTable always returns false on Windows
  9. // /proc/mounts doesn't exist on Windows
  10. func isInMountTable(path string) bool {
  11. return false
  12. }