cosmos-sdk/types/queryable.go

8 lines
191 B
Go
Raw Normal View History

2018-07-31 18:48:32 -07:00
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)
}