1
0
mirror of https://github.com/restic/restic.git synced 2024-07-15 10:44:20 +02:00
restic/node_windows.go

24 lines
393 B
Go
Raw Normal View History

package restic
import "os"
2015-04-25 02:36:54 +02:00
func (node *Node) OpenForReading() (*os.File, error) {
return os.Open(n.path)
}
2015-04-25 01:39:32 +02:00
func (node *Node) fillExtra(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
}