blob: a9d351318648f606da10d48c49416ec13da0002c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// +build !linux
package libpod
import (
"context"
)
func (r *Runtime) migrate(ctx context.Context) error {
return nil
}
func (r *Runtime) stopPauseProcess() error {
return nil
}
|