mirror of
https://github.com/restic/restic.git
synced 2025-03-13 19:30:52 +00:00

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`).
7 lines
92 B
Go
7 lines
92 B
Go
// +build windows
|
|
|
|
package fs
|
|
|
|
// O_NOFOLLOW is a noop on Windows.
|
|
const O_NOFOLLOW int = 0
|