summaryrefslogtreecommitdiff
path: root/pkg/adapter/reset_remote.go
blob: 663fab639a0b7c1a712919f1407f222a7a925958 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// +build remoteclient

package adapter

import (
	"github.com/containers/libpod/cmd/podman/varlink"
)

// Info returns information for the host system and its components
func (r RemoteRuntime) Reset() error {
	return iopodman.Reset().Call(r.Conn)
}