edh-elo/app/routers/__init__.py
Jack Jackson e4ea529fbe Cosmetic and final-basic functionality
At this point it _should_ be just about usable for folks to poke-around
in, though ugly as sin.
2024-06-09 09:45:56 -07:00

20 lines
605 B
Python

from fastapi import APIRouter
from . import base, decks, games, players, score, seed
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)
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(base.html_router)