mirror of
https://github.com/containers/podman.git
synced 2026-04-02 05:56:14 -04:00
* 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>
13 lines
252 B
Go
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)
|
|
}
|