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