mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-07 09:25:43 +00:00
11 lines
126 B
Go
11 lines
126 B
Go
// +build !linux
|
|
|
|
package libpod
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
func (r *Runtime) migrate(ctx context.Context) error {
|
|
return nil
|
|
}
|