mirror of
https://github.com/octoleo/restic.git
synced 2024-11-05 04:47:51 +00:00
24 lines
396 B
Go
24 lines
396 B
Go
package restic
|
|
|
|
import "os"
|
|
|
|
func (node *Node) OpenForReading() (*os.File, error) {
|
|
return os.Open(node.path)
|
|
}
|
|
|
|
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
|
|
}
|