forked from TrueCloudLab/restic
c4b2486b7c
This adds two implementations of the new `FS` interface: One for the local file system (`Local`) and one for a single file read from an `io.Reader` (`Reader`).
6 lines
92 B
Go
6 lines
92 B
Go
// +build windows
|
|
|
|
package fs
|
|
|
|
// O_NOFOLLOW is a noop on Windows.
|
|
const O_NOFOLLOW int = 0
|