2017-04-03 23:19:18 +00:00
|
|
|
package containerd
|
|
|
|
|
2017-03-17 23:09:06 +00:00
|
|
|
import "github.com/pkg/errors"
|
|
|
|
|
|
|
|
var (
|
|
|
|
ErrNotImplementOnWindows = errors.New("not implemented under windows")
|
2017-04-03 23:19:18 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func (m *Mount) Mount(target string) error {
|
2017-03-17 23:09:06 +00:00
|
|
|
return ErrNotImplementOnWindows
|
|
|
|
}
|
|
|
|
|
|
|
|
func Unmount(mount string, flags int) error {
|
|
|
|
return ErrNotImplementOnWindows
|
2017-04-03 23:19:18 +00:00
|
|
|
}
|