mirror of
https://github.com/restic/restic.git
synced 2025-12-23 07:06:15 +00:00
Move platform specific code to different files
This commit is contained in:
19
node_darwin.go
Normal file
19
node_darwin.go
Normal file
@@ -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