forked from TrueCloudLab/restic
Move platform specific code to different files
This commit is contained in:
parent
460ebebeef
commit
1da693a7d7
4 changed files with 114 additions and 55 deletions
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
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue