Files
seaweedfs/weed/mount/unmount/unmount.go
T

7 lines
132 B
Go

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