sftpgo/vfs/fileinfo_windows.go
Nicola Murino 3491717c26 add support for serving Google Cloud Storage over SFTP/SCP
Each user can be mapped with a Google Cloud Storage bucket or a bucket
virtual folder
2020-01-31 19:04:00 +01:00

7 lines
124 B
Go

package vfs
import "syscall"
func (fi FileInfo) getFileInfoSys() interface{} {
return syscall.Win32FileAttributeData{}
}