mirror of
https://github.com/drakkan/sftpgo.git
synced 2025-12-06 14:20:55 +03:00
we have now an interface for filesystem backeds, this make easy to add new filesystem backends
8 lines
126 B
Go
8 lines
126 B
Go
package vfs
|
|
|
|
import "syscall"
|
|
|
|
func (fi S3FileInfo) getFileInfoSys() interface{} {
|
|
return syscall.Win32FileAttributeData{}
|
|
}
|