podman/libpod/runtime_migrate_unsupported.go

16 lines
173 B
Go

// +build !linux
package libpod
import (
"context"
)
func (r *Runtime) migrate(ctx context.Context) error {
return nil
}
func stopPauseProcess() error {
return nil
}