10 lines
131 B
Go
10 lines
131 B
Go
|
package containerd
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
)
|
||
|
|
||
|
func (m *Mount) Mount(target string) error {
|
||
|
return errors.New("mount not supported")
|
||
|
}
|