9 lines
119 B
Go
9 lines
119 B
Go
//go:build !linux
|
|
// +build !linux
|
|
|
|
package main
|
|
|
|
func chown(destPath string, ostat interface{}) error {
|
|
return nil
|
|
}
|