fuse.go 526 B

12345678910111213141516171819202122232425
  1. // +build !linux
  2. /*
  3. * Rufs - Remote Union File System
  4. *
  5. * Copyright 2017 Matthias Ladkau. All rights reserved.
  6. *
  7. * This Source Code Form is subject to the terms of the MIT
  8. * License, If a copy of the MIT License was not distributed with this
  9. * file, You can obtain one at https://opensource.org/licenses/MIT.
  10. */
  11. package main
  12. import "devt.de/krotik/rufs"
  13. /*
  14. setupFuseMount mounts Rufs as a FUSE filesystem.
  15. */
  16. func setupFuseMount(fuseMount *string, tree *rufs.Tree) error {
  17. // Only works on Linux.
  18. return nil
  19. }