Ved Gupta
user enpoint created and tested
35e685d
raw
history blame contribute delete
290 Bytes
# File: whisper.api/app/api/endpoints/__init__.py
from fastapi import APIRouter
from . import users, transcribe
router = APIRouter()
router.include_router(users.router, prefix="/users", tags=["users"])
router.include_router(transcribe.router, prefix="/transcribe", tags=["transcribe"])