diff options
Diffstat (limited to 'weed/mount/unmount/unmount.go')
| -rw-r--r-- | weed/mount/unmount/unmount.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/weed/mount/unmount/unmount.go b/weed/mount/unmount/unmount.go new file mode 100644 index 000000000..c481d8030 --- /dev/null +++ b/weed/mount/unmount/unmount.go @@ -0,0 +1,6 @@ +package unmount + +// Unmount tries to unmount the filesystem mounted at dir. +func Unmount(dir string) error { + return unmount(dir) +} |
