summaryrefslogtreecommitdiff
path: root/plugins/rpc/interface.go
blob: 683fd2ec494c03199231fd19e4619f7018735d53 (plain)
1
2
3
4
5
6
7
package rpc

// RPCer declares the ability to create set of public RPC methods.
type RPCer interface {
	// Provides RPC methods for the given service.
	RPC() interface{}
}