cosmos-sdk/types/queryable.go

7 lines
248 B
Go
Raw Normal View History

2018-07-31 18:48:32 -07:00
package types
import abci "github.com/tendermint/tendermint/abci/types"
2018-08-03 12:55:00 -07:00
// Type for querier functions on keepers to implement to handle custom queries
type Querier = func(ctx Context, path []string, req abci.RequestQuery) (res []byte, err Error)