mirror of
https://github.com/containers/podman.git
synced 2025-05-20 08:36:23 +08:00

Note: this makes info.go linux-only since it mixes linux-specific and generic code. This should be addressed in a separate refactoring PR. [NO NEW TESTS NEEDED] Signed-off-by: Doug Rabson <dfr@rabson.org>
17 lines
283 B
Go
17 lines
283 B
Go
//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")
|
|
}
|