podman/libpod/runtime_migrate_unsupported.go
Giuseppe Scrivano 9dabb16e65
system: migrate stops the pause process
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
2019-05-17 20:48:25 +02:00

12 lines
126 B
Go

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