edh-elo/app/routers/__init__.py
2024-09-04 21:49:25 -07:00

24 lines
805 B
Python

from fastapi import APIRouter
from . import base, decks, games, players, score, seed, stats, suggest
api_router = APIRouter(prefix="/api")
html_router = APIRouter()
api_router.include_router(decks.api_router)
api_router.include_router(players.api_router)
api_router.include_router(games.api_router)
api_router.include_router(score.api_router)
api_router.include_router(seed.api_router)
api_router.include_router(stats.api_router)
api_router.include_router(suggest.api_router)
html_router.include_router(decks.html_router)
html_router.include_router(players.html_router)
html_router.include_router(games.html_router)
html_router.include_router(seed.html_router)
html_router.include_router(stats.html_router)
html_router.include_router(suggest.html_router)
html_router.include_router(base.html_router)