summaryrefslogtreecommitdiff
path: root/interfaces/rpc/interface.go
blob: 7fd2668cdbec24b795216d14473e36670533745a (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{}, error)
}