aboutsummaryrefslogtreecommitdiff
path: root/libpod/runtime_migrate_unsupported.go
blob: 77c2737a9bb95b9663a88ab2dfe584c6743710f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//go:build !linux
// +build !linux

package libpod

import (
	"errors"
)

func (r *Runtime) stopPauseProcess() error {
	return errors.New("not implemented (*Runtime) stopPauseProcess")
}

func (r *Runtime) migrate() error {
	return errors.New("not implemented (*Runtime) migrate")
}