1
0
mirror of https://github.com/umputun/reproxy.git synced 2024-11-24 08:12:31 +02:00
reproxy/vendor/gopkg.in/natefinch/lumberjack.v2/chown.go
2021-04-09 15:31:14 -05:00

12 lines
114 B
Go

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