totals data service update

This commit is contained in:
Ravi Prasad
2025-05-13 17:43:08 -05:00
parent f0447c2141
commit e63862c943
10 changed files with 931 additions and 5 deletions
+1
View File
@@ -10,5 +10,6 @@ func RegisterPlayerTotalRoutes(app *fiber.App, db *gorm.DB) {
api := app.Group("/api/playertotals")
api.Get("/fetch", controllers.FetchPlayerTotalStats(db))
api.Get("/scrape", controllers.ScrapePlayerTotalStats(db))
api.Get("/", controllers.GetPlayerTotalStats(db))
}