fusego/unmount.go

7 lines
133 B
Go
Raw Normal View History

2015-07-24 09:20:11 +03:00
package fuseshim
2015-07-24 09:20:11 +03:00
// Unmount tries to unmount the filesystem mounted at dir.
2015-03-25 02:16:42 +03:00
func Unmount(dir string) error {
2015-07-24 09:20:11 +03:00
return unmount(dir)
}