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