5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 19:32:31 +00:00
matterbridge/vendor/gopkg.in/natefinch/lumberjack.v2/chown.go
2018-11-25 21:21:04 +01:00

12 lines
114 B
Go

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