mirror of
https://git.vectorsigma.ru/public/seaweedfs.git
synced 2026-07-31 05:38:58 +00:00
13 lines
140 B
Go
13 lines
140 B
Go
//go:build windows
|
|
// +build windows
|
|
|
|
package util
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func GetFileUidGid(fi os.FileInfo) (uid, gid uint32) {
|
|
return 0, 0
|
|
}
|