2018-07-31 18:48:32 -07:00
|
|
|
package types
|
|
|
|
|
2019-12-27 09:57:54 -08:00
|
|
|
import (
|
|
|
|
abci "github.com/tendermint/tendermint/abci/types"
|
|
|
|
)
|
2018-07-31 18:48:32 -07:00
|
|
|
|
2019-12-27 09:57:54 -08:00
|
|
|
// Querier defines a function type that a module querier must implement to handle
|
|
|
|
// custom client queries.
|
|
|
|
type Querier = func(ctx Context, path []string, req abci.RequestQuery) ([]byte, error)
|