mirror of
https://github.com/octoleo/restic.git
synced 2024-11-02 19:49:44 +00:00
12 lines
159 B
Go
12 lines
159 B
Go
|
// +build !cgo,!plan9 windows android
|
||
|
|
||
|
package sftp
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
)
|
||
|
|
||
|
func fileStatFromInfoOs(fi os.FileInfo, flags *uint32, fileStat *FileStat) {
|
||
|
// todo
|
||
|
}
|