- Created blueprints/it_audit/ with 5 routes: - /it-audit/form (it_audit_form) - /it-audit/save (it_audit_save) - /api/it-audit/matches/<company_id> - /api/it-audit/history/<company_id> - /api/it-audit/export - Added endpoint aliases for backward compatibility - Removed ~600 lines from app.py (8750 -> 8150) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
15 lines
309 B
Python
15 lines
309 B
Python
"""
|
|
IT Audit Blueprint
|
|
===================
|
|
|
|
IT infrastructure audit routes for companies.
|
|
Includes form, save, history, matches, and export endpoints.
|
|
"""
|
|
|
|
from flask import Blueprint
|
|
|
|
bp = Blueprint('it_audit', __name__)
|
|
|
|
from . import routes # noqa: E402, F401
|
|
from . import routes_api # noqa: E402, F401
|