mirror of
https://github.com/containers/podman.git
synced 2025-05-22 01:27:07 +08:00
12 lines
126 B
Go
12 lines
126 B
Go
// +build !linux
|
|
|
|
package libpod
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
func (r *Runtime) migrate(ctx context.Context) error {
|
|
return nil
|
|
}
|