mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-04 21:09:06 +08:00
fca2b71e28
Signed-off-by: aoiasd <zhicheng.yue@zilliz.com> Signed-off-by: aoiasd <zhicheng.yue@zilliz.com>
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
|
|
}
|