blob: e362cca6372b76cf8de211dd68028c5d2a57b0b9 (
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 stopPauseProcess() error {
return nil
}
|