github.com/fibonacci-chain/fbc@v0.0.0-20231124064014-c7636198c1e9/libs/cosmos-sdk/types/queryable.go (about)

     1  package types
     2  
     3  import (
     4  	abci "github.com/fibonacci-chain/fbc/libs/tendermint/abci/types"
     5  )
     6  
     7  // Querier defines a function type that a module querier must implement to handle
     8  // custom client queries.
     9  type Querier = func(ctx Context, path []string, req abci.RequestQuery) ([]byte, error)