Files
podman/libpod/runtime_migrate_unsupported.go
Paul Holzinger bad25da92e libpod: add !remote tag
This should never be pulled into the remote client.

Signed-off-by: Paul Holzinger <pholzing@redhat.com>
2023-10-24 12:11:34 +02:00

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")
}