seaweedfs/weed/mount/unmount/unmount.go

7 lines
132 B
Go
Raw Normal View History

2022-02-11 04:46:53 +00:00
package unmount
// Unmount tries to unmount the filesystem mounted at dir.
func Unmount(dir string) error {
return unmount(dir)
}