1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-06-03 01:00:04 +02:00
seaweedfs/weed/mount/unmount/unmount.go
2022-02-10 20:46:53 -08:00

7 lines
132 B
Go

package unmount
// Unmount tries to unmount the filesystem mounted at dir.
func Unmount(dir string) error {
return unmount(dir)
}