2015-09-10 02:23:06 +00:00
|
|
|
package system
|
|
|
|
|
2015-10-26 20:34:49 +00:00
|
|
|
// Unmount is a platform-specific helper function to call
|
2015-09-10 02:23:06 +00:00
|
|
|
// the unmount syscall. Not supported on Windows
|
2015-11-02 21:18:07 +00:00
|
|
|
func Unmount(dest string) error {
|
|
|
|
return nil
|
2015-09-10 02:23:06 +00:00
|
|
|
}
|