mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-05 05:18:52 +08:00
13 lines
131 B
Go
13 lines
131 B
Go
|
//go:build !linux
|
||
|
// +build !linux
|
||
|
|
||
|
package accesslog
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
)
|
||
|
|
||
|
func chown(_ string, _ os.FileInfo) error {
|
||
|
return nil
|
||
|
}
|