mirror of
https://github.com/octoleo/syncthing.git
synced 2025-02-08 14:58:26 +00:00
12 lines
135 B
Go
12 lines
135 B
Go
|
// +build !windows
|
||
|
|
||
|
package osutil
|
||
|
|
||
|
func HideFile(path string) error {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func ShowFile(path string) error {
|
||
|
return nil
|
||
|
}
|