8 lines
102 B

//go:build windows
// +build windows
package unmount
func unmount(dir string) error {
return nil
}