feat: complete dev_tools module self-containment

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>
This commit is contained in:
2026-01-28 22:21:59 +01:00
parent 705d336e19
commit d987274e2c
14 changed files with 1028 additions and 19 deletions

View File

@@ -0,0 +1,12 @@
# app/modules/dev_tools/schemas/__init__.py
"""
Dev-Tools module Pydantic schemas.
Schemas for API request/response serialization.
Currently re-exports from central location for backward compatibility.
"""
# Note: Dev-tools schemas are mostly inline in the API routes
# If dedicated schema files exist, they would be re-exported here
__all__ = []