type Interface interface {
// Chown changes the owning UID and GID of a file, implementing// the exact same semantics as os.Chown.
Chown(path string, uid, gid int) error
}
Interface is something that knows how to run the chown system call.
It is non-recursive.