- 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>
13 lines
246 B
Python
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
|