github.com/Finschia/finschia-sdk@v0.48.1/types/queryable.go (about)

     1  package types
     2  
     3  import (
     4  	abci "github.com/tendermint/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)