pkg/system/lstat_windows.go

13 lines
206 B
Go
Raw Normal View History

// +build windows
package system
import (
"syscall"
)
func Lstat(path string) (*syscall.Win32FileAttributeData, error) {
// should not be called on cli code path
return nil, ErrNotSupportedPlatform
}