owner_windows.go

1//go:build windows
2
3package fsext
4
5// Owner retrieves the user ID of the owner of the file or directory at the
6// specified path.
7func Owner(path string) (int, error) {
8	return -1, nil
9}