Skip to content

Commit

Permalink
fix: fix wrong endpoint controller
Browse files Browse the repository at this point in the history
  • Loading branch information
nick-bisonai committed Jul 24, 2024
1 parent 1c0ebf4 commit 5e51a69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/pkg/dal/api/route.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ func Routes(router fiber.Router) {
api.Get("/latest-data-feeds/all", getAllLatestFeeds)
api.Get("/latest-data-feeds/bulk/all", getAllLatestFeedsBulk)
api.Get("/latest-data-feeds/bulk/:symbols", getLatestFeedsBulk)
api.Get("/latest-data-feeds/:symbols", getLatestFeedsBulk)
api.Get("/latest-data-feeds/:symbols", getLatestFeeds)
api.Get("/ws", websocket.New(HandleWebsocket))
}

0 comments on commit 5e51a69

Please sign in to comment.