You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
121 B

  1. // +build windows
  2. package util
  3. import (
  4. "os"
  5. )
  6. func GetFileUidGid(fi os.FileInfo) (uid, gid uint32) {
  7. return 0, 0
  8. }