mirror of
https://github.com/containers/podman.git
synced 2025-06-18 07:28:57 +08:00

This should never be pulled into the remote client. Signed-off-by: Paul Holzinger <pholzing@redhat.com>
17 lines
302 B
Go
17 lines
302 B
Go
//go:build !remote && !linux
|
|
// +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")
|
|
}
|