go_dreamfactory/lego/sys/log/chown.go

13 lines
125 B
Go

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