mirror of
https://github.com/docker/docs.git
synced 2026-04-01 16:58:54 +07:00
9 lines
159 B
Go
9 lines
159 B
Go
// +build windows
|
|
|
|
package system
|
|
|
|
func Lstat(path string) (*Stat_t, error) {
|
|
// should not be called on cli code path
|
|
return nil, ErrNotSupportedPlatform
|
|
}
|