kanha-upadhyay's picture
init
e42e330
raw
history blame
233 Bytes
from fastapi import APIRouter
from ._parser_controller import ParserController
api_router = APIRouter(prefix="/v1")
api_router.include_router(ParserController().router, prefix="/parser", tags=["parser"])
__all__ = ["api_router"]