67210e722c
Signed-off-by: John Howard <jhoward@microsoft.com>
9 lines
131 B
Go
9 lines
131 B
Go
package containerd
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
func (m *Mount) Mount(target string) error {
|
|
return errors.New("mount not supported")
|
|
}
|