mirror of
https://github.com/go-task/task.git
synced 2024-12-12 10:45:49 +02:00
10 lines
208 B
Go
10 lines
208 B
Go
//go:build windows
|
|
|
|
package sysinfo
|
|
|
|
// NOTE: This always returns -1 since there is currently no easy way to get
|
|
// file owner information on Windows.
|
|
func Owner(path string) (int, error) {
|
|
return -1, nil
|
|
}
|