* Cleanup rest txs * Remove nolint * Update x/ibc to use WriteGeneratedTxResponse * Update marshaler usages * Fix PostProcessResponse test * Update PostProcessResponse
13 lines
228 B
Go
13 lines
228 B
Go
package rest
|
|
|
|
import (
|
|
"github.com/gorilla/mux"
|
|
|
|
"github.com/cosmos/cosmos-sdk/client"
|
|
)
|
|
|
|
func RegisterHandlers(clientCtx client.Context, r *mux.Router) {
|
|
registerQueryRoutes(clientCtx, r)
|
|
registerTxHandlers(clientCtx, r)
|
|
}
|