mirror of
https://github.com/restic/restic.git
synced 2026-07-12 10:15:08 +00:00
Move platform specific code to different files
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user