1
0
mirror of https://github.com/restic/restic.git synced 2024-07-01 08:30:53 +02:00
restic/node_windows.go
Florian Weingarten 262e5a8b4a O_NOATIME on Linux
2015-04-25 00:45:20 +00:00

24 lines
394 B
Go

package restic
import "os"
func (node *Node) OpenForReading() (*os.File, error) {
return os.Open(n.path)
}
func (node *Node) fill_extra(path string, fi os.FileInfo) error {
return nil
}
func (node *Node) createDevAt(path string) error {
return nil
}
func (node *Node) createCharDevAt(path string) error {
return nil
}
func (node *Node) createFifoAt(path string) error {
return nil
}