Files
cloudflared/vendor/gopkg.in/natefinch/lumberjack.v2/chown.go
2020-12-23 14:15:37 -06:00

12 lines
114 B
Go

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