7 lines
No EOL
256 B
Python
7 lines
No EOL
256 B
Python
from fastapi import APIRouter
|
|
from app.api.v1.endpoints import parser, health
|
|
|
|
api_router = APIRouter()
|
|
|
|
api_router.include_router(health.router, prefix="/health", tags=["health"])
|
|
api_router.include_router(parser.router, prefix="/parser", tags=["parser"]) |