Initial commit
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
# API routes - Main router
|
||||
from fastapi import APIRouter
|
||||
|
||||
# Import sub-routers
|
||||
from app.api.document_routes import router as document_router
|
||||
from app.api.standards_routes import router as standards_router
|
||||
|
||||
# Create main router
|
||||
router = APIRouter()
|
||||
|
||||
# Include sub-routers
|
||||
router.include_router(document_router)
|
||||
router.include_router(standards_router)
|
||||
|
||||
# Add any additional routes that don't fit in the other routers here
|
||||
Reference in New Issue
Block a user