2
0
Files
lumberjack/chown.go
T
2014-07-25 15:42:36 -04:00

13 lines
125 B
Go

// +build !linux
package lumberjack
import (
"os"
"syscall"
)
func chown(_ string, _ os.FileInfo) error {
return nil
}