nordabiz/blueprints/audit/__init__.py
Maciej Pienczyn 94dd5327bc refactor: Move audit dashboard routes to blueprints/audit
- Create new audit blueprint for user-facing audit dashboards
- Move /audit/seo/<slug>, /audit/social/<slug>, /audit/gbp/<slug>, /audit/it/<slug>
- Add endpoint aliases for backward compatibility
- app.py: 5860 → 5520 lines (-340)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-31 18:03:02 +01:00

13 lines
246 B
Python

"""
Audit Blueprint
================
User-facing audit dashboard pages for SEO, GBP, Social Media, and IT audits.
"""
from flask import Blueprint
bp = Blueprint('audit', __name__, url_prefix='/audit')
from . import routes # noqa: E402, F401