aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/moby/sys/mount/unmount_unsupported.go
blob: 4d6073ec66977f442ceef76e34085c00ee37610a (plain)
1
2
3
4
5
6
7
8
9
10
11
// +build windows

package mount

func unmountBare(_ string, _ int) error {
	panic("Not implemented")
}

func unmount(_ string, _ int) error {
	panic("Not implemented")
}