Skip to content

Commit

Permalink
feat(SPV-1001): rename group name (from roGroup)
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-4chain committed Sep 3, 2024
1 parent 307b52b commit 5ec3e13
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions actions/utxos/routes.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (

// NewHandler creates the specific package routes
func NewHandler(handlersManager *routes.Manager) {
roGroup := handlersManager.Group(routes.GroupOldAPI, "/utxo")
roGroup.GET("", handlers.AsUser(get))
roGroup.POST("/count", handlers.AsUser(count))
roGroup.POST("/search", handlers.AsUser(search))
group := handlersManager.Group(routes.GroupOldAPI, "/utxo")
group.GET("", handlers.AsUser(get))
group.POST("/count", handlers.AsUser(count))
group.POST("/search", handlers.AsUser(search))
}

0 comments on commit 5ec3e13

Please sign in to comment.