custom queriables

This commit is contained in:
Sunny Aggarwal
2018-08-22 00:11:23 -07:00
parent d8f01be211
commit 1d1a95656a
4 changed files with 165 additions and 14 deletions
+7
View File
@@ -0,0 +1,7 @@
package types
import abci "github.com/tendermint/tendermint/abci/types"
type CustomQueryable interface {
Query(ctx Context, path []string, req abci.RequestQuery) (res []byte, err Error)
}