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") }