main
py 9 lines 216 Bytes
Raw
1 from fastapi import APIRouter
2
3 from app.utils import logs_router
4
5 # Instantiate the APIRouter
6 router = APIRouter()
7
8 # Include the Logs related routes
9 router.include_router(logs_router, prefix="/logs", tags=["logs"])