Files
romm/backend/endpoints/responses/stats.py
Michael Manganiello 0fdbbe4625 misc: Upgrade Python to v3.12 and Alpine to v3.20
Included upgrades:
* Python: v3.12
* Alpine: v3.20 (which uses Python 3.12)
* nginx: v1.27.1
2024-08-15 20:14:32 -03:00

11 lines
164 B
Python

from typing import TypedDict
class StatsReturn(TypedDict):
PLATFORMS: int
ROMS: int
SAVES: int
STATES: int
SCREENSHOTS: int
FILESIZE: int