mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-06 17:18:35 +08:00
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
|
|
}
|