blob: fc1ade764f8039d386f158df835a4675ac074b12 [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package interfaces
// Pingable is a pingable RPC server.
type Pingable interface {
// Ping does a ping. The server-side implementation of Ping will never produce
// an error.
Ping() error
}