feat: add Steam Reviews display API with caching

- Create lib/api/steam-reviews.ts with in-memory cache (1hr TTL)
- Proxy endpoint for fetching Steam reviews by game ID
- Supports offset/limit/language query params
- Registers route in API index and app router
This commit is contained in:
2026-04-30 19:32:35 +08:00
parent 6853c8247b
commit f9617bf586
3 changed files with 105 additions and 0 deletions
+1
View File
@@ -18,3 +18,4 @@ export { steamgridProxyRoutes } from "./steamgrid-proxy"
export { gamesManualRoutes } from "./games-manual"
export { compareRoutes } from "./compare"
export { playabilityRoutes } from "./playability"
export { steamReviewRoutes } from "./steam-reviews"