mirror of
https://github.com/containers/podman.git
synced 2025-05-21 00:56:36 +08:00
16 lines
277 B
Go
16 lines
277 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() error {
|
|
return errors.New("not implemented (*Runtime) migrate")
|
|
}
|