hidden_unix.go 319 B

123456789101112131415
  1. // Copyright (C) 2014 Jakob Borg and other contributors. All rights reserved.
  2. // Use of this source code is governed by an MIT-style license that can be
  3. // found in the LICENSE file.
  4. // +build !windows
  5. package osutil
  6. func HideFile(path string) error {
  7. return nil
  8. }
  9. func ShowFile(path string) error {
  10. return nil
  11. }