Migrate dev_tools module to self-contained structure: - routes/api/ - API endpoints - models/architecture_scan.py - Architecture scan models - models/test_run.py - Test run models - schemas/ - Pydantic schemas - services/ - Business logic services - tasks/ - Celery background tasks - exceptions.py - Module exceptions Updated definition.py with self-contained paths. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
17 lines
465 B
Python
17 lines
465 B
Python
# app/modules/dev_tools/routes/__init__.py
|
|
"""
|
|
Dev-Tools module route registration.
|
|
|
|
This module provides dev-tools routes with module-based access control.
|
|
|
|
Structure:
|
|
- routes/api/ - REST API endpoints (code quality, tests)
|
|
- routes/pages/ - HTML page rendering (component library, icons)
|
|
|
|
Note: Dev-tools is an internal module (admin-only), so there is no vendor router.
|
|
"""
|
|
|
|
from app.modules.dev_tools.routes.api import admin_router
|
|
|
|
__all__ = ["admin_router"]
|