- Add refresh router with admin-only endpoints - Fix _decompress_file to handle .psql files correctly - Fix duplicate imports in mtgjson_manager.py - Mount refresh router in main.py - Add download_mtgjson.py standalone script - Add SUPPORTED_FILE_TYPES.md documentation
28 lines
567 B
Python
28 lines
567 B
Python
"""
|
|
Router package exports.
|
|
|
|
All routers are mounted in app/main.py.
|
|
This package provides centralized access to all router modules.
|
|
"""
|
|
from app.routers import auth
|
|
from app.routers import users
|
|
from app.routers import decks
|
|
from app.routers import rooms
|
|
from app.routers import games
|
|
from app.routers import admin
|
|
from app.routers import card_router
|
|
from app.routers import interactions
|
|
from app.routers import refresh
|
|
|
|
__all__ = [
|
|
"auth",
|
|
"users",
|
|
"decks",
|
|
"rooms",
|
|
"games",
|
|
"admin",
|
|
"card_router",
|
|
"interactions",
|
|
"refresh",
|
|
]
|