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

12 lines
114 B
Go
Raw Normal View History

2021-04-06 05:12:06 +02:00
// +build !linux
package lumberjack
import (
"os"
)
func chown(_ string, _ os.FileInfo) error {
return nil
}