5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 09:02:31 +00:00
matterbridge/vendor/gopkg.in/natefinch/lumberjack.v2/chown.go

12 lines
114 B
Go
Raw Normal View History

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