Files
podman/vendor/github.com/moby/sys/mount/unmount_unsupported.go
2020-09-18 02:22:25 +09:00

12 lines
171 B
Go

// +build windows
package mount
func unmountBare(_ string, _ int) error {
panic("Not implemented")
}
func unmount(_ string, _ int) error {
panic("Not implemented")
}