Spaces:
Running
on
T4
Running
on
T4
File size: 285 Bytes
fe79a8f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
"""
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)
|