mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
23e054e402
* Re-add validator-vesting legacy rest endpoints * Add changelog entry * Re-add /vesting swagger config
13 lines
261 B
Go
13 lines
261 B
Go
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)
|
|
}
|