Spaces:
Runtime error
Runtime error
File size: 264 Bytes
fe79a8f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
"""
main routes file
all the v1 and v2... routes will go here
"""
from fastapi import APIRouter
from app.routers.V1 import v1_routers
""" initialize the router """
router = APIRouter()
""" include the v1 routes here """
router.include_router(v1_routers.router)
|