Windows: dummy mount

Signed-off-by: John Howard <jhoward@microsoft.com>
This commit is contained in:
John Howard
2017-04-03 16:19:18 -07:00
parent e119f1dc03
commit 67210e722c
3 changed files with 76 additions and 64 deletions

9
mount_windows.go Normal file
View File

@@ -0,0 +1,9 @@
package containerd
import (
"errors"
)
func (m *Mount) Mount(target string) error {
return errors.New("mount not supported")
}