mirror of
https://github.com/Fishwaldo/restic.git
synced 2025-03-19 21:41:37 +00:00
20 lines
312 B
Go
20 lines
312 B
Go
|
package restic
|
||
|
|
||
|
import "os"
|
||
|
|
||
|
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
|
||
|
}
|