containerd/mount_windows.go

10 lines
131 B
Go

package containerd
import (
"errors"
)
func (m *Mount) Mount(target string) error {
return errors.New("mount not supported")
}