mirror of
https://github.com/octoleo/restic.git
synced 2024-11-05 04:47:51 +00:00
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`).
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
|