Files
podman/pkg/adapter/reset_remote.go
Jhon Honce 7a12e01556 V2 Move varlink home
* move cmd/podman/varlink/* to pkg/varlink to support podmanV2 refactor
* update Makefile
* reformatted all impacted code

Signed-off-by: Jhon Honce <jhonce@redhat.com>
2020-03-30 08:18:35 -07:00

13 lines
252 B
Go

// +build remoteclient
package adapter
import (
iopodman "github.com/containers/libpod/pkg/varlink"
)
// Info returns information for the host system and its components
func (r RemoteRuntime) Reset() error {
return iopodman.Reset().Call(r.Conn)
}