syncthing/osutil/hidden_unix.go
2014-05-25 20:49:08 +02:00

12 lines
135 B
Go

// +build !windows
package osutil
func HideFile(path string) error {
return nil
}
func ShowFile(path string) error {
return nil
}