mirror of https://github.com/containers/podman.git
16 lines
294 B
Go
16 lines
294 B
Go
//go:build !remote && !linux
|
|
|
|
package libpod
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
func (r *Runtime) stopPauseProcess() error {
|
|
return errors.New("not implemented (*Runtime) stopPauseProcess")
|
|
}
|
|
|
|
func (r *Runtime) Migrate(newRuntime string) error {
|
|
return errors.New("not implemented (*Runtime) migrate")
|
|
}
|