1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-05-30 07:09:53 +02:00
This commit is contained in:
chrislu 2022-02-14 03:14:05 -08:00
parent 05724a68d4
commit ff666104c4
2 changed files with 10 additions and 2 deletions

View file

@ -1,5 +1,5 @@
//go:build !linux
// +build !linux
//go:build !linux && !windows
// +build !linux,!windows
package unmount

View file

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