@ -1,5 +1,5 @@
//go:build !linux
// +build !linux
//go:build !linux && !windows
// +build !linux,!windows
package unmount
@ -0,0 +1,8 @@
//go:build windows
// +build windows
func unmount(dir string) error {
return nil
}