Files
leanote/vendor/gopkg.in/natefinch/lumberjack.v2/chown.go
2017-11-30 19:55:33 +08:00

12 lines
114 B
Go

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