arnabg95's picture
v2
fe79a8f
raw
history blame
285 Bytes
"""
v1 routes file
all the v1 routes like auth
profile... will be included here
"""
from fastapi import APIRouter
from app.routers.V1.voice import voice_router
""" initialize the router """
router = APIRouter()
""" include auth routes """
router.include_router(voice_router.router)