aboutsummaryrefslogtreecommitdiff
path: root/pkg/adapter/reset_remote.go
blob: 284b54a17e88399390e46f8d7c2fde65c1aa9ade (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// +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)
}