0g-chain/x/validator-vesting/client/rest/rest.go

13 lines
261 B
Go
Raw Normal View History

package rest
import (
"github.com/gorilla/mux"
"github.com/cosmos/cosmos-sdk/client"
)
// RegisterRoutes registers kavadist-related REST handlers to a router
func RegisterRoutes(cliCtx client.Context, rtr *mux.Router) {
registerQueryRoutes(cliCtx, rtr)
}