14 lines
250 B
Python

"""
Routes du backend.
"""
from fastapi import APIRouter
from . import auth, elections, votes
router = APIRouter()
router.include_router(auth.router)
router.include_router(elections.router)
router.include_router(votes.router)
__all__ = ["router"]