mirror of
https://github.com/restic/restic.git
synced 2025-03-15 08:10:52 +00:00
13 lines
215 B
Go
13 lines
215 B
Go
//go:build windows
|
|
// +build windows
|
|
|
|
package fs
|
|
|
|
// TODO honor flags when opening files
|
|
|
|
// O_NOFOLLOW is a noop on Windows.
|
|
const O_NOFOLLOW int = 0
|
|
|
|
// O_DIRECTORY is a noop on Windows.
|
|
const O_DIRECTORY int = 0
|